Pages

CSS3 Transitions

CSS3 Transitions

<!DOCTYPE html>
<html>
<head>
<style>
div
{
width:100px;
height:100px;
background:red;
transition:width 2s;
-webkit-transition:width 2s; /* Safari */
}

div:hover
{
width:300px;
}
</style>

</head>
<body>

<p><b>Note:</b> This example does not work in Internet Explorer 9 and earlier versions.</p>

<div></div>

<p>Hover over the div element above, to see the transition effect.</p>

</body>
</html>

Note: This example does not work in Internet Explorer 9 and earlier versions.

No comments:

Flag Counter
Designed by vnBloggertheme.com | Copyright © 2013 Remote Tutor