-
Notifications
You must be signed in to change notification settings - Fork 4
/
test.html
101 lines (95 loc) · 3.98 KB
/
test.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TEST HTML ENVIRONMENT</title>
<link rel="stylesheet" href="./result.css">
<link rel="stylesheet" href="./index.css" />
</head>
<body style="background-color: gray;">
<div class="header_bar">
<button class="modal_btns history-open" id="history-open">HISTORY</button>
<div class="right_align_section">
<div class="gem_amount">
Current Gem Count: <span id="GEM_AMT"></span>
</div>
<button class="modal_btns open-button">BUY GEMS</button>
<div class="status_level">
<div class="status_icon" id="goldfish" hidden>
<img style="height: 100%;" src="goldfish.png">
</div>
<div class="status_icon" id="dolphin" hidden>
<img style="height: 100%;" src="dolphin.png">
</div>
<div class="status_icon" id="whale" hidden>
<img style="height: 100%;" src="whale.png">
</div>
</div>
</div>
</div>
<dialog class="modal" id="modal">
<h2 style="text-align: center; margin-bottom: 1rem;">Purchase Gems</h2>
<div class="purchase_selection">
<button class="qwer" value="100">100</button>
<button class="qwer" value="550">ADD 500 + 50</button>
<button class="qwer" value="1300">ADD 1000 + 300</button>
<button class="qwer" value="2900">ADD 2500 + 400</button>
<button class="qwer" value="6000">ADD 5000 + 1000</button>
<button class="qwer" value="13200">ADD 10000 + 3200</button>
</div>
<button class="button close-button">close modal</button>
</dialog>
<dialog class="modal" id="historyModal">
<button class="modalClose history-close">close</button>
<div class="history-list" id="history-list">
<table>
<tbody id="history-table">
<tr>
<th>Name</th>
<th>Date</th>
<th>Rating</th>
</tr>
</tbody>
</table>
</div>
<div class="page-numbers" id="page-numbers">
<button class="btn-pagination" id="previous-btn" value="previous">
<svg width="253" height="332" viewBox="0 0 253 332" fill="none" xmlns="http://www.w3.org/2000/svg">
<path id="Vector" d="M127.5 5L7 165L127.5 327M247.5 5L127 165L247.5 327M187.5 5L67 165L187.5 327"
stroke="black" stroke-width="10" stroke-linecap="round" />
</svg>
</button>
<div id="current-number">1</div>
<button class="btn-pagination" id="next-btn" value="next">
<svg width="252" height="332" viewBox="0 0 252 332" fill="none" xmlns="http://www.w3.org/2000/svg">
<path id="Vector" d="M125 327L245.5 167L125 5M5 327L125.5 167L5 5M65 327L185.5 167L65 5"
stroke="black" stroke-width="10" stroke-linecap="round" />
</svg>
</button>
</div>
</dialog>
<div class="summon_banner">
<img src="./banner.png" alt="banner">
</div>
<div class="video-container">
<video src="./imgs/5starwish-single.mp4" playsinline muted></video>
<button id="skip">Skip</button>
</div>
<div class="container">
<button class="close">close</button>
<div class="box" id="cards-summoned">
</div>
</div>
<div class="summon_btns">
<button id="single" value="100" id="asdf" disabled>SINGLE
SUMMON</button>
<button id="multi" id="asdf" value="1000" disabled>MULTI
SUMMON</button>
</div>
</body>
<script type="module" src="index.js"></script>
<script>
</script>
</html>