-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathanimation.php
95 lines (74 loc) · 3.07 KB
/
animation.php
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<?php include 'header.php'; ?>
<title>HTML5 Banner Animation - Rob Thwaites - Web & Graphic Design</title>
<link rel="canonical" href="http://robthwaites.com/animation" />
<?php include 'header2.php'; ?>
<div class="presentation">
<div id="slides" tabindex="-1">
<nav class="prevnext top">
<a class="prev" href="cgu" title="HTML Email Templates">‹</a>
<a class="close" href="/">✕</a>
<a class="next" href="disruption" title="The Great Disruption - Illustration">›</a>
</nav>
<div class="title banner">
<div class="box-container">
<div class="box">
<span>Banner Animation</span>
<span>Illustration & HTML5 Animation</span>
<span class="client">Student Work</span>
</div>
</div>
</div>
<div class="caption lead">
<p>Move over Flash – amazing things are possible with Javascript and the high-performing GreenSock Animation Platform <a href="http://greensock.com" target="_blank">GSAP</a>, fast becoming a new industry standard for HTML5 animation.</p>
<br />
<p>The animation is crafted purely with SVG, Javascript and the GSAP – no jQuery, Flash or images. This makes it incredibly fast to load, and playable on all platforms (even those finicky Apple iOS devices).</p>
</div>
<div class="slide svg-wrap">
<?php
include('images/banner/svg-background.svg');
?>
<?php
include('images/banner/svg-clouds.svg');
?>
<?php
include('images/banner/svg-balloons.svg');
?>
<?php
include('images/banner/svg-clouds2.svg');
?>
<?php
include('images/banner/svg-neon.svg');
?>
<?php
include('images/banner/svg-dust.svg');
?>
<?php
include('images/banner/svg-arm.svg');
?>
<?php
include('images/banner/svg-you.svg');
?>
<?php
include('images/banner/svg-thanks.svg');
?>
<?php
include('images/banner/svg-grain.svg');
?>
<?php
include('images/banner/svg-replay.svg');
?>
</div>
<div class="slide" style="display: none">
<img src="/images/pantone/01.jpg" />
</div>
<nav class="prevnext bottom">
<a class="prev" href="cgu" title="HTML Email Templates">‹</a>
<a class="close" href="/">✕</a>
<a class="next" href="disruption" title="The Great Disruption - Illustration">›</a>
</nav>
<script src="js/TweenMax.js"></script>
<script src="js/MorphSVGPlugin.min.js"></script>
<script src="js/gsap-banner.js"></script>
</div>
</div>
<?php include 'footer.php'; ?>