<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
div#bounce {
width: 200px;
height: 200px;
background-color: red;
-webkit-transition-duration: 50ms, 200ms;
-webkit-transition-property: margin, background;
-webkit-transition-timing-function: ease;
}
div#bounce:hover {
background-color: green;
margin-top: 25px;
}
</style>
</head>
<body>
<div id="bounce"></div>
</body>
</html>