What I'm trying to do is copy the first bit of text to the right and then disappear into the hidden text .. maybe?
Still testing a few things with CSS3 and I was wondering if this is possible: http://jsfiddle.net/ht65k/
HTML
<ul id="socialnetworks"> <li> <span><a href="#">Fade in Text</a></span> <a href="#">Slide to Right</a> </li> </ul>
CSS
#socialnetworks li{ -moz-transition-property: all; -webkit-transition-property: all; -o-transition-property: all; transition-property: all; -moz-transition-duration: 0.8s; -webkit-transition-duration: 0.8s; -o-transition-duration: 0.8s; transition-duration: 0.8s; } #socialnetworks li:hover{ padding-left: 120px; } #socialnetworks span{ display: none; } #socialnetworks span:hover{ display: visible;}
source share