Kimossab

Blinking Link

Dec 7th, 2015
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.33 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. a {
  6.     animation: example 2s infinite
  7. }
  8.  
  9.  
  10. @keyframes example {
  11.     0%   {opacity:1;}
  12.     50%  {opacity: 0;}
  13.     100%  {opacity: 1;}
  14. }
  15. </style>
  16. </head>
  17. <body>
  18.  
  19. <p><a href="#">Note:</a> This example does not work in Internet Explorer 9 and earlier versions.</p>
  20.  
  21. </body>
  22. </html>
Advertisement
Add Comment
Please, Sign In to add comment