Сообщение от Severtain
|
CSS3 наверное отпадает, так как угол наклона может именяться с каждой секундой!
|
ну почему же:
<style type="text/css">
#div {
background-color: red;
margin: 30px auto;
-webkit-transition: all 1s ease-in-out;
-moz-transition: all 1s ease-in-out;
-o-transition: all 1s ease-in-out;
width: 50px;
height: 50px;
}
#div:hover {
background-color: #fc3;
-webkit-transform: rotate(360deg) scale(2);
-moz-transform: rotate(360deg) scale(2);
-o-transform: rotate(360deg) scale(2);
}
</style>
<div id="div"></div>
по canvas
тут