-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (45 loc) · 2.2 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
42
43
44
45
46
47
48
<!DOCTYPE html>
<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>My Forest</title>
<link rel="stylesheet" href="https://unpkg.com/element-ui/lib/theme-chalk/index.css">
<link rel="stylesheet" type="text/css" href="./css/home.css">
<link rel="shortcut icon" href="./pictures/tree.png" >
</head>
<body>
<div id="container">
<img src="./pictures/homeBackground.png" class="homeImg">
<img src="./pictures/homeTitle.png" class="homeTitle">
<div>
<a href="./newTree.html" class="start">
<div class="title" @mouseenter='changeColor1' @mouseleave='changeColor2'
:style="{'background': startBackground}">
<div class="titltContext">start</div>
</div>
</a>
</div>
<div class="introduction" v-show='isShow'>
<i class="el-icon-close" class="close" @click='close'></i>
<h3>关于我们:</h3>
<br>
<h3>组名:你说得队</h3>
<h4>成员:贺维 张有权 蒋沛汛 范玮旻 曾琴</h3>
<!-- <br> -->
<h5>项目介绍:四季轮回,白驹过隙,时间在一分一秒的流逝,不知你是否注意到门前那颗树也在四季的轮转中抽芽、繁密、凋落,伴随着我们一同成长。我们组以此为灵感,推出一款小游戏——my
forest,点击屏幕可以看到一棵树的生长历程,点击屏幕上方的走马灯可以变换四季或是黑夜得到不同类型的树木。希望大家可以在游戏中感受生命的力量,找回内心的平静。</h5>
</div>
<div class="aboutUs">
<a class="aboutContaienr" @click='open'>
<div class="about" @mouseenter='changeColor3' @mouseleave='changeColor4'
:style="{'background': aboutBackground}">
<div class="aboutUsContext"> ···</div>
</div>
</a>
</div>
</div>
<script src="./js/vue.js"></script>
<script src="./js/home.js"></script>
</body>
</html>