1539303-iframe.html (724B)
1 <html> 2 <head> 3 <style> 4 LI { 5 min-width: max-content; 6 column-count: 72; 7 } 8 </style> 9 <script> 10 function start () { 11 document.getElementById('ul').animate({ 12 'scrollSnapPointsY': ['repeat(2vh', ''], 13 'paddingInlineStart': ['25in', ''] 14 }, { 15 delay: 2, 16 fill: 'both', 17 }) 18 document.getElementById('ul').scrollIntoView(false) 19 } 20 // reload once 21 if (location.hash == "") { 22 location.hash = "#hello"; 23 setTimeout('location.reload()', 0) 24 } 25 document.addEventListener('DOMContentLoaded', start) 26 </script> 27 28 </head> 29 <body> 30 <ul id="ul"> 31 <li></li> 32 </ul> 33 </body> 34 </html>