-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlist.html
53 lines (48 loc) · 1.39 KB
/
list.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>见字-list</title>
<style>
.container {
display: grid;
place-items: center;
}
</style>
</head>
<body>
<div class="container">
<h1>见字</h1>
<article-list></article-list>
<template id="articleListTemplate">
<ul>
<li>
<a href="detail.html">
<span>历史:</span>
1906年-夏目漱石-《草枕》
</a>
</li>
<li>
<a href="detail.html">
<span>理想:</span>
日语平假名
</a>
</li>
</ul>
</template>
</div>
<script>
class ArticleList extends HTMLElement {
constructor() {
super();
var shadow = this.attachShadow({ mode: 'closed' });
var templateElem = document.getElementById('articleListTemplate');
var content = templateElem.content.cloneNode(true);
shadow.appendChild(content);
}
}
window.customElements.define('article-list', ArticleList);
</script>
</body>
</html>