mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-15 08:53:07 +09:00
19 lines
289 B
HTML
19 lines
289 B
HTML
<html>
|
|
<body>
|
|
|
|
<script>
|
|
addEventListener('load', function() {
|
|
setTimeout(function() {
|
|
var a = document.getElementById('audio');
|
|
a.onplay = function() {
|
|
alert('onplay');
|
|
};
|
|
a.play();
|
|
}, 0);
|
|
});
|
|
</script>
|
|
|
|
<audio id='audio' loop src='silence.ogg'>
|
|
|
|
</body>
|
|
</html>
|