monoteen

bounce_ball

Oct 5th, 2014
220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.00 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <title>TODO supply a title</title>
  5.         <meta charset="UTF-8">
  6.         <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7.         <style>
  8.             @-webkit-keyframes bounce {
  9.                 from, to {
  10.                     bottom: 0px;
  11.                     -webkit-animation-timing-function: ease-out;
  12.                 }
  13.                 50% {
  14.                     bottom: 200px;
  15.                     -webkit-animation-timing-function: ease-in;
  16.                 }
  17.             }
  18.             #ball {
  19.                 position: absolute;
  20.                 width: 20px;
  21.                 height: 20px;
  22.                 background: red;
  23.                 border-radius: 10px;
  24.                 -webkit-animation-name: bounce;
  25.                 -webkit-animation-iteration-count: infinite;
  26.                 -webkit-animation-duration: 2s;
  27.             }
  28.         </style>
  29.     </head>
  30.     <body>
  31.         <div id="ball"></div>
  32.     </body>
  33. </html>
Advertisement
Add Comment
Please, Sign In to add comment