Advertisement
Guest User

Untitled

a guest
Jun 30th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. <a href="">
  2. <img src=" http://i.imgur.com/Be4Vpun.png" alt="">
  3. </a>
  4.  
  5. a {
  6. border:1px solid red;
  7. margin: 25px;
  8. display: inline-block;
  9. }
  10.  
  11. img {
  12. -webkit-animation: fade 20s alternate infinite;
  13. animation: fade 13s alternate infinite;
  14. display: block;
  15. }
  16.  
  17. @-webkit-keyframes fade {
  18. 0% {
  19. opacity: 0.6;
  20. }
  21.  
  22. 100% {
  23. opacity: 0.0;
  24. }
  25.  
  26. }
  27.  
  28. @keyframes fade {
  29. 0% {
  30. opacity: 0.6;
  31. }
  32. 100% {
  33. opacity: 0.0;
  34. }
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement