Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<style> 
div {
    width: 100px;
    height: 100px;
    background: red;
    transition-property:width; 
    transition-duration:3s;
    transition-delay:0.5s;
    transition-timing-function: linear;
}
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>
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x