This repository has been archived by the owner on Mar 30, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
108 lines (91 loc) · 4.08 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
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
<!doctype html>
<html lang="en" class="no-js">
<head>
<meta charset="utf-8" />
<link rel="apple-touch-icon" sizes="76x76" href="assets/img/apple-icon.png">
<link rel="icon" type="image/png" href="assets/img/favicon.ico">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title>Blind Sight</title>
<meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0' name='viewport' />
<meta name="viewport" content="width=device-width" />
<link href="assets/css/bootstrap.min.css" rel="stylesheet" />
<link href="assets/css/paper-kit.css?v=2.1.0" rel="stylesheet" />
<link href="assets/css/demo.css" rel="stylesheet" />
<!-- Fonts and icons -->
<link href='http://fonts.googleapis.com/css?family=Montserrat:400,300,700' rel='stylesheet' type='text/css'>
<link href="http://maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css" rel="stylesheet">
<link href="assets/css/nucleo-icons.css" rel="stylesheet">
</head>
<body class="presentation-page loading">
<div class="wrapper">
<div class="page-header section-dark" style="background-image: url('assets/img/sections/forest-bg.jpg')">
<div class="content-center">
<div class="container">
<div class="title-brand">
<h1 class="presentation-title">LUCAS</h1>
<div class="type">Blind Sight</div>
<div class="fog-low">
<img src="assets/img/sections/fog-low.png" alt="">
</div>
<div class="fog-low right">
<img src="assets/img/sections/fog-low.png" alt="">
</div>
</div>
<h2 class="presentation-subtitle text-center">Logarithmic Ultrasonic Collision Avoidance System</h2>
</div>
</div>
</div>
</body>
<!-- Plugins -->
<!-- Core JS Files -->
<script src="assets/js/jquery-3.2.1.min.js" type="text/javascript"></script>
<script src="assets/js/jquery-ui-1.12.1.custom.min.js" type="text/javascript"></script>
<script src="assets/js/popper.js" type="text/javascript"></script>
<script src="assets/js/bootstrap.min.js" type="text/javascript"></script>
<script src="assets/js/paper-kit.js?v=2.1.0"></script>
<script src="assets/js/demo.js"></script>
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY"></script>
<!-- Plugins for presentation page -->
<script src="assets/js/presentation-page/main.js"></script>
<script async defer src="https://buttons.github.io/buttons.js"></script>
<script type="text/javascript">
(function() {
function getRandomInt(min, max) {
return Math.floor(Math.random() * (max - min + 1)) + min;
}
new IsoGrid(document.querySelector('.isolayer--deco1'), {
transform: 'translateX(33vw) translateY(-340px) rotateX(45deg) rotateZ(45deg)',
stackItemsAnimation: {
properties: function(pos) {
return {
translateZ: (pos + 1) * 30,
rotateZ: getRandomInt(-4, 4)
};
},
options: function(pos, itemstotal) {
return {
type: dynamics.bezier,
duration: 500,
points: [{
"x": 0,
"y": 0,
"cp": [{
"x": 0.2,
"y": 1
}]
}, {
"x": 1,
"y": 1,
"cp": [{
"x": 0.3,
"y": 1
}]
}],
delay: (itemstotal - pos - 1) * 40
};
}
}
});
})();
</script>
</html>