Friday, 12 July 2013

jquery's mouse over rotate

.cross-browser .feature-box-image{
background: url('i/feature-sprites.png') -278px 0px no-repeat;
-webkit-transition: all 0.4s;
transition: all 0.4s;
position: relative;
z-index: 10;
}
.cross-browser .feature-box-image:hover {
-webkit-transition: all 0.7s linear;
-webkit-transform: rotate(6.28rad);
transition: all 0.7s;
transform: rotate(6.28rad);
}

No comments:

Post a Comment