-
Notifications
You must be signed in to change notification settings - Fork 0
/
love.html
51 lines (38 loc) · 1.51 KB
/
love.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
<!DOCTYPE html>
<html>
<meta http-equiv="Content-Security-Policy"
content="script-src 'self' 'unsafe-inline' https://apis.google.com/js/platform.js">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<head>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<section id="block">
<form id="my-form">
<input type="image" id="pet-change1" src="/images/AvaPet128.png" height="30" width="30">
<input type="image" id="pet-change2" src="/images/BellaPet128.png" height="30" width="30">
<input type="image" id="pet-change3" src="/images/CarolPet128.png" height="30" width="30">
<input type="image" id="pet-change4" src="/images/DianaPet128.png" height="30" width="30">
<input type="image" id="pet-change5" src="/images/EileenPet128.png" height="30" width="30">
<div class="msg">
<div>
<h3 id="pet-name">向晚</h3>
<img height="100" style="background-position:left" src="/images/AvaPet128.png" />
</div>
<div class="row">
<div class="column">
<h1 style="color: red;"> ♥️ </h1>
</div>
<div class="column">
<div class="progress-container">
<progress id="love-progress" value="10" max="100"></progress>
</div>
</div>
</div>
</div>
<input class="btn" type="submit" id="pet-submit" value="更换宠物">
</form>
</section>
<script src="popup.js"></script>
</body>
</html>