<!DOCTYPE html>
<html>
<head>
<style>
div {
width: 100px;
height: 100px;
background: red;
-webkit-animation: animasiku 6s; /* Chrome, Safari, Opera */
animation: animasiku 5s;
}
/* Chrome, Safari, Opera */
@-webkit-keyframes animasiku {
from {background: red;}
to {background: black;}
}
/* Standard syntax */
@keyframes animasiku {
from {background: red;}
to {background: black;}
}
</style>
</head>
<body>
<p><b>Catatan:</b> Browser IE 9 dan yang lama tidak mendukung property CSS3 animation. </p>
<div></div>
</body>
</html>
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.