8 lines
224 B
HTML
8 lines
224 B
HTML
<!doctype html>
|
|
<div id="host"></div>
|
|
<script>
|
|
document.addEventListener('DOMContentLoaded', () => {
|
|
let shadow = host.attachShadow({ mode: 'open' });
|
|
shadow.appendChild(document.createElement('marquee'));
|
|
});
|
|
</script>
|