I like the way it does, for example please see profile picture when you hover 'CR' that will show picture on the top, how does it works?
Please let me know.
I like the way it does, for example please see profile picture when you hover 'CR' that will show picture on the top, how does it works?
Please let me know.
chack the answer of Alois Mahdal from here
<style>
#tuxie {
width: 25px; height: 25px;
background: url('images/tuxie.png') no-repeat left top;
}
#tuxie:hover { background-position: -25px 0px }
</style>
<div id="tuxie" />
This is done with the help of CSS3 attribute which is "transition: all 0.7s ease-out 0s;" This will show this smooth effect and remaining is normal "hover" property of css.
Read about "transition" property of css for more details. http://css3.bradshawenterprises.com/transitions/