1611847.html (624B)
1 <html> 2 <head> 3 <style> 4 * { 5 transition-duration: 2s; 6 } 7 </style> 8 <script> 9 function start () { 10 const element = document.createElementNS('', 's'); 11 const effect = new KeyframeEffect(document.documentElement, {}, 196); 12 document.documentElement.setAttribute('style', 'padding-left:3'); 13 effect.updateTiming({ 'delay': 2723 }); 14 const animations = document.getAnimations(); 15 animations[0].effect = effect; 16 animations[0].updatePlaybackRate(-129); 17 effect.target = element; 18 } 19 20 document.addEventListener('DOMContentLoaded', start); 21 </script> 22 </head> 23 </html>