Guest User

Untitled

a guest
Jul 20th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. <html>
  2. <head>
  3. <style type="text/css">
  4. #graphline {
  5. display:block;
  6. width:10px;
  7. height:200px;
  8. background-color:#000;
  9. }
  10. #graphline {
  11. -webkit-transition:all 500ms;
  12. }
  13. #graphline.full {width:500px;}
  14. #graphline.back {
  15. -webkit-transition:none;
  16. }
  17. </style>
  18. </head>
  19. <body>
  20. <button onclick="document.getElementById('graphline').className='full';">Animate!</button>
  21. <button onclick="document.getElementById('graphline').className='back';">Reset</button>
  22. <div id="graphline"></div>
  23. </body>
  24. </html>
Add Comment
Please, Sign In to add comment