/ Published in: CSS
URL: http://designshack.co.uk/articles/css/creating-a-fun-animated-navigation-menu-with-pure-css
On element:hover this will increase scale and rotate over .5 of a second.\r\n\r\nI borrowed it from somewhere else so thank them.
Expand |
Embed | Plain Text
.element:hover { /*Transition*/ -webkit-transition:All .5s ease; -moz-transition:All .5s ease; -o-transition:All .5s ease; /*Transform*/ -webkit-transform: rotate(-10deg) scale(1.2); -moz-transform: rotate(-10deg) scale(1.2); -o-transform: rotate(-10deg) scale(1.2); }
You need to login to post a comment.
