I want the word "gallery" to do a css3 3D rotate transition and reveal the words "art/art2" unfortunately I'm having a mud of a time getting it to work.
HTML
<div class="wrap">
<div class="gallery">Gallery</div>
<div class="back"><a href="" class="link_a">Art</a><a href=""
class="link_b">Art2</a>
</div>
CSS
.gallery {font-size:4em;color:orange;}
.gallery a:hover {color:orange;position:absolute;-webkit-transition: all .1s ease-in-out;-webkit-perspective:600px; none;-webkit-transform-style: preserve-3d;}
.back {font-size:4em;position:absolute;top:2px;}
.back a:hover {color:grey;-webkit-transform: rotateX(180deg);-webkit-perspective: 500px;}