Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <head>
- <title>TODO supply a title</title>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <style>
- @-webkit-keyframes bounce {
- from, to {
- bottom: 0px;
- -webkit-animation-timing-function: ease-out;
- }
- 50% {
- bottom: 200px;
- -webkit-animation-timing-function: ease-in;
- }
- }
- #ball {
- position: absolute;
- width: 20px;
- height: 20px;
- background: red;
- border-radius: 10px;
- -webkit-animation-name: bounce;
- -webkit-animation-iteration-count: infinite;
- -webkit-animation-duration: 2s;
- }
- </style>
- </head>
- <body>
- <div id="ball">공</div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment