-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (29 loc) · 1.04 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Examples</title>
<meta name="description" content="">
<meta name="keywords" content="">
<link rel="stylesheet" href="wave.css">
</head>
<body style="min-width: 1920px;min-height: 940px;">
<div id="father" style="position: absolute;height: 940px;width: 1920px;">
<!--<input placeholder="请设置x轴速度" type="number" id="xspeed" value="">-->
<!--<input placeholder="请设置y轴速度" type="number" id="yspeed" value="">-->
<div id="ball" style="width: 150px;height: 150px; overflow: hidden;">
<img src="ball.png" alt="" width="150px" height="150px" style="margin: auto;">
</div>
</div>
<div class="waveWrapper waveAnimation">
<div class="waveWrapperInner bgMiddle">
<div class="wave waveMiddle"></div>
</div>
<div class="waveWrapperInner bgBottom">
<div class="wave waveBottom"></div>
</div>
</div>
<script src="bounce.js"></script>
</body>
</html>