-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (49 loc) · 1.79 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
<html>
<head>
<title>Gradient Animation</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Indie+Flower">
<link href="Vidage/styles/Vidage.css" rel="stylesheet" />
<link href="gradient_animation.css" rel="stylesheet" />
<script src="Vidage/scripts/Vidage.js"></script>
<script src="Granim/granim.js"></script>
</head>
<body>
<div class="Vidage">
<div class="Vidage__image"></div>
<video id="VidageVideo" class="Vidage__video" preload="metadata" loop autoplay muted>
<source src="videos/bg.mp4" type="video/mp4">
</video>
<div class="Vidage__backdrop">
<canvas id="canvas-image"></canvas>
</div>
</div>
<script src="gradient_animation.js"></script>
<div class="Container Intro">
<a target="_blank" href="http://www.ullawolk.si/portfolios/lucija-potocnik/">Lucija Potočnik</a>
<p>Miss Universe Slovenia 2016</p>
</div>
<nav>
<ul class="nav">
<a href="#" id="href-fashion" onclick="gradient_fashion();return false;">
<span class="icon-fashion"></span>
</a>
<a href="#" id="href-police" onclick="gradient_police();return false;">
<span class="icon-police"></span>
</a>
<a href="#" id="href-camera" onclick="gradient_camera();return false;">
<span class="icon-camera"></span>
</a>
<a href="#" id="href-fire" onclick="gradient_fire();return false;">
<span class="icon-fire"></span>
</a>
<a href="#" id="href-pause" class="choise" onclick="gradient_pause();return false;">
<span class="icon-pause" id="status_play"></span>
</a>
<a href="#" id="href-clear" class="choise" onclick="gradient_clear();return false;">
<span class="icon-clear"></span>
</a>
</ul>
</nav>
</body>
</html>