-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
143 lines (137 loc) · 5.61 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Archive | Shiv | Interaction Lab</title>
<link rel="stylesheet" type="text/css" href="assets/style.css" />
<script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
</head>
<body id="body" class="animsition">
<!-- Preloader -->
<div id="preloader">
<div id="status"> </div>
</div>
<div class="mobile-message">
<div class="error-container">
<i class="fas fa-exclamation-triangle" style="color: #AA3F39; font-size: 8em;"></i>
<p>This website is not optomized for Mobile. Please access this on your desktop.</p>
</div>
</div>
<div class="social-container">
<div>
<a href="#" target="_blank"><i class="fab fa-dribbble social-icons"></i></a>
</div>
<div>
<a href="#" target="_blank"><i class="fab fa-behance social-icons"></i></a>
</div>
<div>
<a href="#" target="_blank"><i class="fab fa-instagram social-icons"></i></a>
</div>
<p class="copyright">© Shivam Sinha 2018</p>
</div>
<div class="logo-wrapper" id="menu">
<div id="nav-icon" class="menu-triggerer">
<span></span>
<span></span>
<span></span>
<span></span>
</div>
<div class="inner-logo-wrapper">
<img src="assets/images/logo.png" alt="logo" class="logo" onclick="location.reload(); location.href='index.html'">
</div>
<div id="nav-icon" class="social">
<span></span>
<span></span>
<span></span>
<span></span>
</div>
</div>
<!-- <div class="helvetica"></div>
<div class="ff-bau"></div>
<div class="hereisny"></div>
<div class="gamedesign"></div>
<div class="altitude"></div>
<div class="flatland"></div> -->
<a href="helveticanism.html" class="animsition-link" data-animsition-out-class="zoom-out"><img src="assets/images/home-helveticanism.png" class="helvetica" /></a>
<a href="ff-bau.html" class="animsition-link" data-animsition-out-class="zoom-out"><img src="assets/images/home-bau.png" class="ff-bau" /></a>
<a href="hereisny.html" class="animsition-link" data-animsition-out-class="zoom-out"><img src="assets/images/home-hereisny.png" class="hereisny" /></a>
<a href="gamedesign.html" class="animsition-link" data-animsition-out-class="zoom-out"><img src="assets/images/home-gamedesign.png" class="gamedesign" /></a>
<a href="altitude.html" class="animsition-link" data-animsition-out-class="zoom-out"><img src="assets/images/home-altitude.png" class="altitude" /></a>
<a href="flatland.html" class="animsition-link" data-animsition-out-class="zoom-out"><img src="assets/images/home-flatland.png" class="flatland" /></a>
<!-- <div class="footer-container">
<div class="social-icons">
<a href="#" target="_blank" class="social-icons-spacer"><i class="fab fa-dribbble" style="color: black"></i></a>
<a href="#" target="_blank" class="social-icons-spacer"><i class="fab fa-behance" style="color: black"></i></a>
<a href="#" target="_blank" class="social-icons-spacer"><i class="fab fa-instagram" style="color: black"></i></a>
</div>
<div class="copyright">© Shivam Sinha 2018</div>
</div> -->
</body>
<!-- animsition.css -->
<link rel="stylesheet" href="assets/dist/css/animsition.min.css">
<!-- animsition.js -->
<script src="assets/dist/js/animsition.min.js"></script>
<!-- Preloader -->
<script type="text/javascript">
//<![CDATA[
$(window).on('load', function() { // makes sure the whole site is loaded
$('#status').fadeOut(); // will first fade out the loading animation
$('#preloader').delay(350).fadeOut('slow'); // will fade out the white DIV that covers the website.
$('body').delay(350).css({
'overflow': 'visible'
});
})
//]]>
</script>
<script>
$(document).ready(function() {
$('.menu-triggerer').click(function() {
$(this).toggleClass('open');
$('.helvetica, .ff-bau, .hereisny, .gamedesign, .altitude, .flatland').toggleClass('menu-trigger');
});
$('.social').click(function() {
$(this).toggleClass('open');
$('.social-container').toggleClass('active');
});
});
</script>
<script>
$(function() {
$('.helvetica, .ff-bau, .hereisny, .gamedesign, .altitude, .flatland').hover(function() {
$('.logo-wrapper').css('opacity', '0');
}, function() {
// on mouseout, reset the opacity
$('.logo-wrapper').css('opacity', '1');
});
});
</script>
<script defer src="https://use.fontawesome.com/releases/v5.0.6/js/all.js"></script>
<script>
$(document).ready(function() {
$(".animsition").animsition({
inClass: 'fade-in',
outClass: 'fade-in',
inDuration: 800,
outDuration: 800,
linkElement: '.animsition-link',
// e.g. linkElement: 'a:not([target="_blank"]):not([href^="#"])'
loading: false,
loadingParentElement: 'body', //animsition wrapper element
loadingClass: 'animsition-loading',
loadingInner: '', // e.g '<img src="loading.svg" />'
timeout: false,
timeoutCountdown: 5000,
onLoadEvent: true,
browser: [ 'animation-duration', '-webkit-animation-duration'],
// "browser" option allows you to disable the "animsition" in case the css property in the array is not supported by your browser.
// The default setting is to disable the "animsition" in a browser that does not support "animation-duration".
overlay : false,
overlayClass : 'animsition-overlay-slide',
overlayParentElement : 'body',
transition: function(url){ window.location.href = url; }
});
});
</script>
</html>