-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmovingcube.html
26 lines (25 loc) · 971 Bytes
/
movingcube.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
<!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">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<link rel="stylesheet" href="cube_style.css">
<title></title>
</head>
<body>
<div id="boxes">
<div id="btns">
<button class="play"><i class="fa fa-play-circle"></i></button>
<button class="pause"><i class="fa fa-pause-circle"></i></button>
</div>
<div class="box red"></div>
<div class="box blue"></div>
<div class="box green"></div>
<div class="box yellow"></div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/animejs/2.0.2/anime.js"></script>
<script src="main_cube.js"></script>
</body>
</html>