forked from Ihatetomatoes/greensock-101
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (40 loc) · 1.75 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
49
50
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<title>GreenSock 101</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/app.css">
</head>
<body>
<header id="header">
<h1><span>GreenSock 101</span><em></em></h1>
<p class="intro">Your first hour with GSAP, <br /><em>make sure it is a good one</em>.</p>
<img src="img/petr-tichy-ihatetomatoes-blog.svg" alt="GreenSock 101 - Getting started with GreenSock in 60 minutes.">
<h2>Table Of Content</h2>
<ul class="list">
<li><a href="#"><span><strong>Lesson 1</strong> - Getting started</span></a></li>
<li><a href="#"><span><strong>Lesson 2</strong> - Tweens</span></a></li>
<li><a href="#"><span><strong>Lesson 3</strong> - Timelines</span></a></li>
<li><a href="#"><span><strong>Lesson 4</strong> - Callbacks</span></a></li>
<li><a href="#"><span><strong>Lesson 5</strong> - Timeline controls</span></a></li>
</ul>
</header>
<!-- <div class="buttons">
<button id="btnPlay">play</button>
<button id="btnPause">pause</button>
<button id="btnResume">resume</button>
<button id="btnReverse">reverse</button>
<button id="btnSpeedUp">speed up</button>
<button id="btnSlowDown">slow down</button>
<button id="btnSeek">seek 1 sec</button>
<button id="btnProgress">go to 50%</button>
<button id="btnRestart">restart</button>
</div> -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.2.4/gsap.min.js"></script>
<script src="js/main.js" defer></script>
</body>
</html>