hover effect
{"view":"split-vertical","fontsize":"100","seethrough":"","prefixfree":"1","page":"css"}
// alert('Hello world!');
<!-- content to be placed inside <body>…</body> -->
<div id="container">
<a href=""></a>
</div>
/**
* hover effect
http://www.diesel.com/campaign/#/
*/
body{
background: gray;
}
#container{
width: 300px;
height: 200px;
background: blue;
overflow: hidden;
content: " Hover" ;
}
a{ opacity: 1;
-webkit-transform-origin: 0% 0%;
background-color: rgb(236, 116, 96);
width: 100px;
height: 347px;
display:block;
margin: -15px 0 0 300px;
}
#container:hover a{
-webkit-transform: rotate(13deg) ;
}