-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtry.html
More file actions
executable file
·42 lines (39 loc) · 1.43 KB
/
try.html
File metadata and controls
executable file
·42 lines (39 loc) · 1.43 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>飞行实践</title>
<style>
body {
width: 35em;
margin: 0 auto;
font-family: Tahoma, Verdana, Arial, sans-serif;
}
.arrival{
font-size: 50px;
font-family: 华文彩云;
color: gold;
animation-name: zoomout;
animation-play-state: paused;
animation-duration: 2s;
position: absolute;
}
@keyframes zoomout {
0%{font-size:0px;}
80%{font-size:200px}
100%{font-size: 50px;}
}
</style>
</head>
<body>
<div>
<h1>欢迎来到飞行实践!</h1>
<blockquote style="font-family: 隶书;font-size:30px;">“问汝<b style="font-size:50px;font-family:华文行楷;color:crimson" id="ping">平</b>生功业,飞机巨鸡卖鸡”</blockquote>
<img src="img/ju.JPG" style="width: 200px;height: 200px;" id="p1"/>
</div>
<button onclick="start=true;fly(0);"style="position:absolute;top:500px;left:200px;" id="bt1">开始飞行</button>
<button onclick="tremble(0);"style="position:absolute;top:500px;left:300px;">遇到强气流</button>
<p class="arrival" style="display: none;" id="desti">到达目的地!</p>
<script src="fly.js"></script>
<a href="game.html" style="position:absolute;top:500px;left:400px;">仿真训练 </a>
</body>