-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (50 loc) · 1.04 KB
/
Copy pathindex.html
File metadata and controls
68 lines (50 loc) · 1.04 KB
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
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>my penguin</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- pug
//- .box
//- .head
//- .swoosh-1
//- .swoosh-2
//- .swoosh-3
//- .swoosh-4
//- .eye
//- .beak
//- .body
//- .inner-body
//- .left-wing
//- .right-wing
//- .left-foot
//- .right-foot -->
<div id="app">
<body>
<div class="box">
<div class="head"></div>
<div class="swoosh-1"></div>
<div class="swoosh-2"></div>
<div class="swoosh-3"></div>
<div class="swoosh-4"></div>
<div class="eye"></div>
<div class="beak"></div>
<div class="body">
<div class="inner-body"></div>
</div>
<div v-on:click= "upLeft"
v-bind:class="wingClass">
</div>
<div class="right-wing">
</div>
<div class="left-foot"></div>
<div class="right-foot"></div>
</div>
</body>
</div>
<script src='https://cdnjs.cloudflare.com/ajax/libs/vue/2.5.16/vue.min.js'></script>
<script src="js/index.js"></script>
</body>
</html>