21 lines
No EOL
600 B
HTML
21 lines
No EOL
600 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Hello World WC</title>
|
|
<script type="module">
|
|
import {HelloWorld} from './HelloWorld.mjs';
|
|
customElements.define('hello-world', HelloWorld);
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<hello-world name="Ayo" emotion="sad" />
|
|
<script>
|
|
const helloWorld = document.querySelector('hello-world');
|
|
setTimeout(() => {
|
|
helloWorld.setAttribute('emotion', 'excited');
|
|
}, 2500)
|
|
</script>
|
|
</body>
|
|
</html> |