-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (28 loc) · 980 Bytes
/
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
<!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>基础实例</title>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/vue.js"></script>
<link rel="stylesheet" href="index.css">
</head>
<body>
<div id="app">
<!--图片 -->
<div id="bag" class="bag" v-if = "styles.width =='0px' ? false : true "> </div>
<div id= "bag" class="bag-burst" v-else = "styles.width =='0px' ? true : false"></div>
<!-- 进度情况 -->
<div id="bag-health">
<div :style = "sty"></div>
</div>
<!-- 控制按钮-->
<div id="controls">
<button @click = "knock">使劲敲</button>
<button @click = "reset">重新开始</button>
</div>
</div>
<script src="index.js" charset="utf-8"></script>
</body>
</html>