I've implemented social buttons that change the image on hover and it's working perfectly.
<a href="#">
<img src="http://i.imgur.com/TLGeYXo.png" class="social-icons social-fb "/>
</a>
This is my CSS:
.social-fb:hover {
content:url("http://i.imgur.com/bU0lzac.png");
}
Now I would like to add animations to it. How can I make some animations so that when I hover and the image changes, there's a smooth transition effect? Any animation suggestions are welcomed. Thank you!