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