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