blob: 20b88f63270aff7c8afef6f88daae42246199268 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<!doctype html>
<html>
<head>
<script>
window.addEventListener('load', async () => {
const element = document.getElementById('target');
element.animate({
'all': ['initial']
}, {
'duration': 500,
'pseudoElement': '::marker',
})
element.hidden = false;
})
</script>
</head>
<ul>
<li id='target' hidden></li>
</ul>
</html>
|