Advertisement
Shailrshah

Animations

Apr 23rd, 2015
259
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.27 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <style>
  5.         img{
  6.             width:20%;
  7.             display:block;
  8.             position: relative;
  9.             margin-bottom: 500px;
  10.         }
  11.         #transformation{
  12.             transform:skew(30deg, 10deg) scale(2.0, 2.0) rotate(30deg);
  13.         }
  14.         #transition{
  15.             transition: opacity 1s ease-in 0s, width 1s ease-in 0s;
  16.         }
  17.         #transition:hover{
  18.             opacity: 0.7;
  19.             width:30%;
  20.         }
  21.         #animation:active{
  22.             -webkit-animation: myKey 10s ease-in-out 0.2s infinite alternate;
  23.         }
  24.         @-webkit-keyframes myKey{
  25.             0%{background: lightblue; margin-left: 0px}
  26.             25%{background: orange; margin-left: 200px;}
  27.             50%{background: yellow; margin-left: 200px; margin-top: 200px;}
  28.             75%{background: green; margin-left: 0px; margin-top: 200px;}
  29.             100%{background: brown; margin-left: 0px; margin-top: 200px;}
  30.         }
  31.         #all{
  32.             transform:skew(30deg, 10deg) scale(1.2, 1.2) rotate(30deg);
  33.             transition: width 1s ease-in 0s;
  34.         }
  35.         #all:hover{
  36.             width: 30%;
  37.             -webkit-animation: myKey 10s ease-in-out 0.2s infinite alternate;
  38.         }
  39.     </style>
  40. </head>
  41. <body>
  42.     <img src="b.png" id = "original" /> Original
  43.  
  44.     <img src="b.png" id = "transformation" /> transformation
  45.     <img src="b.png" id = "transition" /> transition
  46.     <img src="b.png" id = "animation" /> animation
  47.  
  48.     <img src="b.png" id = "all" />
  49. </body>
  50. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement