Do Transition + Transformation Using Simple Html Code

Do Transition + Transformation Using  Simple Html Code:


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

div:hover {
    width: 300px;
    height: 300px;
    -webkit-transform: rotate(180deg); /* Safari */
    transform: rotate(180deg);
}
</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>



OutPut:

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

TheTechGuy

Hover over the div element above, to see the transition effect.

Share this:

CONVERSATION

0 comments:

Post a Comment