Animate fontawesome Icon inside anchor tag to fly in onhover and change background - HTML CSS HTML Tag

HTML CSS examples for HTML Tag:a

Description

Animate fontawesome Icon inside anchor tag to fly in onhover and change background

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <meta name="viewport" content="width=device-width, initial-scale=1"> 
  <link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"> 
  <style id="compiled-css" type="text/css">

</style> <!--from  w  w  w . j a  va  2s . c  om-->
 </head> 
 <body> 
  <a href="#" class="btn ripple"> <i class="fa fa-left fa-location-arrow"></i> <span class="label">View Location </span> <i class="fa fa-right fa-angle-right fa-animate"></i> </a>  
 </body>
</html>

Related Tutorials