Advertisement
Guest User

Untitled

a guest
Nov 22nd, 2017
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Document</title>
  6. <style>
  7. .null{
  8. transition:1s;
  9. opacity: 0;
  10. width: 30px;
  11. height: 30px;
  12. background: white;
  13. display: inline-block;
  14. margin: 10px;
  15. }
  16. .box{
  17. width: 30px;
  18. height: 30px;
  19. background: green;
  20. display: inline-block;
  21. margin: 10px;
  22. opacity: 1;
  23. }
  24. </style>
  25. </head>
  26. <body>
  27. <script>
  28. let el = document.createElement('div')
  29. document.body.appendChild(el)
  30. el.classList.add('null')
  31. setTimeout(function(){el.classList.add('box')}, 10)
  32. </script>
  33. </body>
  34. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement