-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
executable file
·48 lines (38 loc) · 1.29 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>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>JS GSAP</title>
<link rel="stylesheet" href="css/style.css"/>
</head>
<body>
<!--<div class="controlButtons">
<button id="start">Start</button>
<button id="pause">Pause</button>
<button id="stop">Stop</button>
<button id="reverse">Reverse</button>
</div>-->
<div class="content-holder">
<div class="tools">
<img class="tool" id="toolBox" src="images/tool-box.svg"/>
<img class="tool" id="weightLifter" src="images/weight-lifter.svg"/>
<img class="tool" id="crazy" src="images/crazy-fast.svg"/>
<img class="tool" id="leaf" src="images/leaf.png"/>
</div>
<div class="title">
JavaScript Animation Using
</div>
<div class="gsapTitle">
<div class="superman">
<img id="supermeme" src="images/gsap-superhero.svg"/>
<div class="mainTitle"><p><span class="asapReg">Green</span><span class="greenText"> Sock</span></p>
<p><span class="greenText">Animation Platform</span></p>
</div>
</div>
</div>
</div>
<script src="js/jquery-3.2.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/1.19.1/TweenMax.min.js"></script>
<script src="js/app.js"></script>
</body>
</html>