-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWebComponentsDemo.html
39 lines (33 loc) · 1.14 KB
/
WebComponentsDemo.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>CUSTOM WEB COMPONENTS DEMO</title>
</head>
<body>
<!-- template is used to store the custom elements content in HTML node format-->
<template id='tempCustom'>
<style>
h1 {
color: brown;
}
</style>
<h1>This H1 is inside custom element in shadowDOM</h1>
</template>
<my-custom-element></my-custom-element>
<h1>This H1 from outside of custom element and is not affected by style in shadowDom</h1>
<script>
customElements.define('my-custom-element',
class element extends HTMLElement {
constructor() {
super();
const template = document.getElementById('tempCustom')
const templateClone = document.importNode(template.content, true);
this.createShadowRoot().appendChild(templateClone);
}
})
</script>
</body>
</html>