-
Notifications
You must be signed in to change notification settings - Fork 0
/
animation.html
112 lines (98 loc) · 4.32 KB
/
animation.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
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Régis Raffin - Director</title>
<meta name="viewport" content="width=device-width; initial-scale=1.0; user-scalable=no">
<!-- for old doomed brothers (specific CSS + html5 support) -->
<!--[if lt IE 9]>
<script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script>
<link rel="stylesheet" type="text/css" href="ie8-and-down.css" />
<![endif]-->
<!-- for not IE and IE > 9 -->
<!--[if !IE]><!-->
<link rel="stylesheet" type="text/css" href="classic.css" />
<!--<![endif]-->
<!--[if gte IE 9]>
<link rel="stylesheet" type="text/css" href="classic.css" />
<![endif]-->
<link rel="stylesheet" type="text/css" href="data/animation/animation.css" />
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="./js/jquery.hammer.min.js"></script>
<script src="./js/hammer.min.js"></script>
<script src="./data/animation/animation.js"></script>
<script src="./videoLoader.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-20914571-1', 'regisraffin.com');
ga('send', 'pageview');
</script>
<script>
$(function() {
var $allVideos = $("iframe"),
$fluidEl = $(".video");
$allVideos.each(function() {
$(this)
// jQuery .data does not work on object/embed elements
.attr('data-aspectRatio', this.height / this.width)
.removeAttr('height')
.removeAttr('width');
});
$(window).resize(function() {
var newWidth = $fluidEl.width();
$allVideos.each(function() {
var $el = $(this);
$el
.width(newWidth)
.height(newWidth * $el.attr('data-aspectRatio'));
});
}).resize();
});
</script>
</head>
<body>
<div class="glub">
<div class="side">
<h1>REGIS RAFFIN</h1>
<div class="menuicon"></div>
<nav>
<ul>
<li><a href="./">Demo reel</a></li>
<li><a class="active">Animation</a></li>
<li><a href="./music-videos">Music videos</a></li>
<li><a href="./fiction">Fiction</a></li>
<li><a href="./commercials">Commercials</a></li>
<li><a href="./about">About</a></li>
<li><a href="./contact">Contact</a></li>
</ul>
</nav>
</div>
<div class="container">
<div class="main">
<p><span lang="fr">Réalisateur de fictions, clips, marketing viral et publicités TV /</span> fiction, music videos, viral & TV commercial director</p>
<section>
<div class="video">
<iframe id="vimeo" src="" width="1084" height="609" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
</div><!--
--><div class="blok legend"><img class="logowhite" src="logo-white.png" /><div class="customer"></div><div class="desc"></div></div><!--
--><div id="movie1" class="blok mov movie1"><div class="customer"></div><div class="title"></div></div><!--
--><div id="movie2" class="blok mov movie2"><div class="customer"></div><div class="title"></div></div><!--
--><div id="movie3" class="blok mov movie3"><div class="customer"></div><div class="title"></div></div><!--
--><div id="movie4" class="blok mov movie4"><div class="customer"></div><div class="title"></div></div><!--
--><div id="movie5" class="blok mov movie5"><div class="customer"></div><div class="title"></div></div><!--
--><div id="movie6" class="blok mov movie6"><div class="customer"></div><div class="title"></div></div><!--
--><div id="movie7" class="blok mov movie7"><div class="customer"></div><div class="title"></div></div><!--
--><div id="movie8" class="blok mov movie8"><div class="customer"></div><div class="title"></div></div><!--
--><div id="movie9" class="blok mov movie9"><div class="customer"></div><div class="title"></div></div><!--
--><div id="movie10" class="blok mov movie10"><div class="customer"></div><div class="title"></div></div><!--
--><div id="movie11" class="blok mov movie11"><div class="customer"></div><div class="title"></div></div><!--
--><div id="movie12" class="blok mov movie12"><div class="customer"></div><div class="title"></div></div>
</section>
</div>
</div>
</div>
</body>
</html>