CSS3 Squire Animation | Coding Tag
×

CSS3 Squire Animation

3190

CSS3 Squire Animation - through this you can give animated radius on square box.

Modify border radius size, background color of box, height width of box, border radius size - all can modify as per your requirement.

Just simple copy below code and paste into your web page or blog.

Example:

<!DOCTYPE html>
<html>
<head>
<style type="text/css">
@-webkit-keyframes squire {
0% {
border-radius:0 0 0 0;
}
25% {
border-radius:30% 0 0 0;
}
50% {
border-radius:30% 30% 0 0;
}
75% {
border-radius:30% 30% 30% 0;
}
100% {
border-radius:30%;
}
}
.squire {
width: 400px;
height: 400px;
background-color: #ddd;
animation: squire 3s 2s alternate;
}

</style>
</head>

<body>
<div class="squire">

</div>
</body>

</html>



Best WordPress Hosting


Share:


Discount Coupons

Get a .COM for just $6.98

Secure Domain for a Mini Price



Leave a Reply


Comments
    Waiting for your comments