Hi Friends...
we can make Animations by using CSS 3 here I show you how we can make simple Animation
using CSS 3.
we can make Animations by using CSS 3 here I show you how we can make simple Animation
using CSS 3.
Your Code is as under
<!DOCTYPE html>
<html>
<head>
<style>
div
{
width: 250px;
height: 250px;
background-color: Yellow;
-webkit-animation-name: example;
-webkit-animation-duration: 6s;
animation-name: example;
animation-duration: 6s;
}
@-webkit-keyframes example
{
from {background-color: Green;}
to {background-color: Yellow;}
}
</style>
</head>
<body>
<div></div>
</body>
</html>
Thank You !
0 comments:
Post a Comment