forked from vdqbstp/playground-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (37 loc) · 1.02 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Oasis playground</title>
</head>
<body>
<div class="header">
<a class="logo" href="https://oasis3d.alipay.com/" target="Home">
<img src="https://gw-office.alipayobjects.com/basement_prod/cd6a7701-4b8f-4225-9036-69a1001d55b7.webp" alt="" />
</a>
</div>
<div class="container">
<div class="nav-left">
<input
placeholder="search..."
class="search-bar"
id="searchBar"
autocorrect="off"
autocapitalize="off"
spellcheck="false"
/>
<div class="item-list" id="itemList"></div>
</div>
<div class="nav-right">
<a class="card" id="cardPrefab">
<div class="img-container">
<div class="img"></div>
</div>
<div class="title"></div>
<div class="intro"></div>
</a>
</div>
</div>
<script type="module" src="./homepage/index.js"></script>
</body>
</html>