Advertisement
Guest User

ye

a guest
Oct 8th, 2015
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.95 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Oppgave 5.2</title>
  5. <style type="text/css">
  6.  
  7. body{
  8. background-color: rgb(250, 150, 200);
  9. margin: 0px;
  10. }
  11.  
  12. #box1,#box2,#box3,#box4{
  13. background-color: rgb(200,100,150);
  14. width: 100px;
  15. height: 100px;
  16. position: absolute;
  17. }
  18.  
  19. #box1{
  20. -webkit-animation-name: loop;
  21. -webkit-animation-duration: 12s;
  22. -webkit-animation-iteration-count:infinite;
  23. -webkit-animation-timing-function:linear;
  24. }
  25.  
  26. @-webkit-keyframes loop{
  27. 25%{
  28. left: 0%;
  29. top: 0%;
  30. margin-left: 100%;
  31. margin-top: 0%;
  32. }
  33.  
  34. 50%{
  35. left: 100%;
  36. top: 100%;
  37. margin-left:0%;
  38. margin-top:0%;
  39. }
  40.  
  41. 75%{
  42. left: 0%;
  43. top: 100%;
  44. margin-left: 0%;
  45. margin-top: 0%;
  46. }
  47. 100%{
  48. left: 0%;
  49. top: 0%;
  50. margin-left: 0%;
  51. margin-right: 100%;
  52. }
  53.  
  54. }
  55.  
  56. #box2{
  57. -webkit-animation-name: loop;
  58. -webkit-animation-duration: 12s;
  59. -webkit-animation-iteration-count:infinite;
  60. -webkit-animation-timing-function:linear;
  61. -webkit-animation-delay: 3s;
  62. }
  63.  
  64. @-webkit-keyframes loop{
  65. 25%{
  66. left: 0%;
  67. top: 0%;
  68. margin-left: 100%;
  69. margin-top: 0%;
  70. }
  71.  
  72. 50%{
  73. left: 100%;
  74. top: 100%;
  75. margin-left:0%;
  76. margin-top:0%;
  77. }
  78.  
  79. 75%{
  80. left: 0%;
  81. top: 100%;
  82. margin-left: 0%;
  83. margin-top: 0%;
  84. }
  85. 100%{
  86. left: 0%;
  87. top: 0%;
  88. margin-left: 0%;
  89. margin-right: 100%;
  90. }
  91.  
  92. }
  93. #box3{
  94. -webkit-animation-name: loop;
  95. -webkit-animation-duration: 12s;
  96. -webkit-animation-iteration-count:infinite;
  97. -webkit-animation-timing-function:linear;
  98. -webkit-animation-delay: 6s;
  99. }
  100.  
  101. @-webkit-keyframes loop{
  102. 25%{
  103. left: 0%;
  104. top: 0%;
  105. margin-left: 100%;
  106. margin-top: 0%;
  107. }
  108.  
  109. 50%{
  110. left: 100%;
  111. top: 100%;
  112. margin-left:0%;
  113. margin-top:0%;
  114. }
  115.  
  116. 75%{
  117. left: 0%;
  118. top: 100%;
  119. margin-left: 0%;
  120. margin-top: 0%;
  121. }
  122. 100%{
  123. left: 0%;
  124. top: 0%;
  125. margin-left: 0%;
  126. margin-right: 100%;
  127. }
  128.  
  129. }
  130. #box4{
  131.  
  132. -webkit-animation-name: loop;
  133. -webkit-animation-duration: 12s;
  134. -webkit-animation-iteration-count:infinite;
  135. -webkit-animation-timing-function:linear;
  136. -webkit-animation-delay: 9s;
  137. }
  138.  
  139. @-webkit-keyframes loop{
  140. 25%{
  141. left: 0%;
  142. top: 0%;
  143. margin-left: 100%;
  144. margin-top: 0%;
  145. }
  146.  
  147. 50%{
  148. left: 100%;
  149. top: 100%;
  150. margin-left:0%;
  151. margin-top:0%;
  152. }
  153.  
  154. 75%{
  155. left: 0%;
  156. top: 100%;
  157. margin-left: 0%;
  158. margin-top: 0%;
  159. }
  160. 100%{
  161. left: 0%;
  162. top: 0%;
  163. margin-left: 0%;
  164. margin-right: 100%;
  165. }
  166.  
  167. }
  168.  
  169. #box1:hover, #box2:hover, #box3:hover, #box4:hover{
  170. -webkit-animation-play-state:paused;
  171. }
  172.  
  173. </style>
  174. </head>
  175. <body>
  176.  
  177. <section>
  178. <div id="box1"></div>
  179. <div id="box2"></div>
  180. <div id="box3"></div>
  181. <div id="box4"></div>
  182. </section>
  183.  
  184. </body>
  185. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement