TAG
CSS
Result
Run
License
<h2>Raise the mouse pointer.</h2> <div class="cube-wrapper"> <img src="http://resrc.devdic.com/img/bykind/alpha/150x135_flower.png" /> </div>
.cube-wrapper { width: 150px; height: 135px; position: relative; left: calc(50vw - 50px); top: calc(20vh - 50px); transition: 0.3s; } .cube-wrapper:hover { transform: rotateY(-60deg); }
Console
expand_less
License
License
by DevDic
Close