1278305.html (382B)
1 <html> 2 <head> 3 <style> 4 body { 5 mask: url(#mymask); 6 } 7 div::after { 8 content: counter(n); 9 } 10 </style> 11 <script> 12 window.onload = function(){ 13 document.getElementsByTagName('body')[0].animate( 14 [{"transform": "skewy(11rad)"}, 15 {"transform": "rotatex(0.125turn)"}], 16 {"fill":"forwards", "iterations": 0.75, "duration": 1}); 17 }; 18 </script></head> 19 <body><div></div></body> 20 </html>