Create a Quick pop anmation with CSS3

Everyone excited about CSS3 and always looking to improve their web sites with CSS3 animation for better customer attraction. So here im sharing a quick tip on making a quick pop animation for a link (anchor tag).

CSS CODE :

.pop-link { transition: all .2s ease-in-out; }
.pop-link:hover { transform: scale(1.1); }

Apply the above simple code in your css stylesheet and add the “pop-link” class to your link (Anchor tag).
Enjoy it ! Keep in touch for more quick tips on CSS3 with Us.

You may also like...