Advertisement
Guest User

Untitled

a guest
May 9th, 2012
360
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.33 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title></title>
  6. <script>
  7.  
  8. </script>
  9. <style>
  10. @-moz-keyframes fill {
  11. from {
  12. background-color: black;
  13. }
  14. to {
  15. background-color: teal;
  16. }
  17. }
  18.  
  19. @-webkit-keyframes fill {
  20. from {
  21. background-color: black;
  22. }
  23. to {
  24. background-color: teal;
  25. }
  26. }
  27.  
  28. @-o-keyframes fill {
  29. from {
  30. background-color: black;
  31. }
  32. to {
  33. background-color: teal;
  34. }
  35. }
  36. div {
  37. width: 100px;
  38. height: 100px;
  39. background-color: black;
  40. -moz-animation-name: fill;
  41. -moz-animation-duration: 5s;
  42. -webkit-animation-name: fill;
  43. -webkit-animation-duration: 5s;
  44. -o-animation-name: fill;
  45. -o-animation-duration: 5s;
  46. }
  47. div:hover {
  48. background-color: red;
  49. -moz-transition: background-color 2s;
  50. -webkit-transition: background-color 2s;
  51. -o-transition: background-color 2s;
  52. }
  53.  
  54. </style>
  55. </head>
  56. <body>
  57. <div></div>
  58. </body>
  59. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement