akshayharyani

Animate img

Apr 21st, 2015
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.55 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. img{
  6. -webkit-animation-name: test;
  7. -webkit-animation-duration: 4s;
  8. -webkit-animation-iteration-count: infinite;
  9. -webkit-animation-direction: alternate;
  10. -webkit-animation-timing-function: linear; //ease in, ease out
  11. }
  12. @-webkit-keyframes test {
  13.     0%   {height: 220px;
  14.            width: 220px;
  15.            }
  16.     0%   {height: 240px;
  17.            width: 240px;
  18.            }//opacity
  19. }          
  20. </style>
  21. </head>
  22. <body>
  23. <a href=""><img src="C:\Users\Akshay\Pictures\00520_HD.jpg" style="width:100px; height: 100px"></a>
  24. </body>
Add Comment
Please, Sign In to add comment