Advertisement
Guest User

Untitled

a guest
Mar 24th, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. ;(() => {
  2. var node = document.createElement('style');
  3. node.innerHTML = `
  4. @keyframes fadeTheFuckOut {
  5. 0% {
  6. opacity: inherit;
  7. }
  8. 100% {
  9. opacity: 0;
  10. transform: translateY(-30px) rotate(15deg);
  11. }
  12. }
  13.  
  14. .fadeTheFuckOut {
  15. animation: fadeTheFuckOut 3s ease-out;
  16. animation-fill-mode: forwards;
  17. }
  18. `;
  19. document.body.appendChild(node);
  20.  
  21. [...document.querySelectorAll('*')].map(e => {
  22. if( Math.random() <= 0.5 ) return;
  23. if( e.childElementCount > 0 ) return;
  24. e.classList.add('fadeTheFuckOut');
  25. });
  26. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement