example.html 556 B

12345678910111213141516171819202122232425262728293031
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Transitionize Example Page</title>
  5. <style type="text/css">
  6. .wrap {
  7. height: 75px;
  8. margin: 100px auto 0;
  9. position: relative;
  10. width: 300px;
  11. }
  12. .elem {
  13. background-color: #febf04;
  14. border-radius: 100%;
  15. bottom: 0;
  16. display: block;
  17. height: 75px;
  18. left: 0;
  19. position: absolute;
  20. width: 75px;
  21. }
  22. </style>
  23. <script src="bundle.js"></script>
  24. </head>
  25. <body>
  26. <div class="wrap">
  27. <span class="elem js-elem"></span>
  28. </div>
  29. </body>
  30. </html>