Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2014
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta id="viewport" name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <title>css3 stuff</title>
  7. <link rel="stylesheet" type="text/css" href="newstyle.css" />
  8.  
  9. <style text="text/css">
  10. #playground{
  11. background:red;
  12. width:30em;
  13. height:40em;
  14. overflow:hidden;
  15. margin:auto;
  16. position:relative;}
  17.  
  18. #playground > img{
  19. width:10em;
  20. position:absolute;
  21. -webkit-animation:dance 6s 2;
  22. animation:dance 6s 2;
  23.  
  24.  
  25. }
  26.  
  27. @-webkit-keyframes dance{
  28.  
  29. 0% {
  30. width:10em;
  31. left:0;
  32. top:0;
  33. }
  34.  
  35.  
  36.  
  37.  
  38. 100%{
  39.  
  40. width:10em;
  41. left:10em;
  42. top:10em;
  43.  
  44. }
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55. }</style>
  56. </head>
  57. <body>
  58.  
  59. <div id="playground">
  60. <img src="cat.jpg" alt="" >
  61. </div>
  62.  
  63. <p>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.</p>
  64. </body>
  65. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement