-
Notifications
You must be signed in to change notification settings - Fork 0
/
hereisny.html
93 lines (90 loc) · 3.55 KB
/
hereisny.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
<!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="" style="overflow-y: visible; background: #fff;">
<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>
<a href="index.html" class="animsition-link" data-animsition-out-class="fade-out-right">
<i class="fas fa-chevron-left" style="font-size: 2em; position: fixed; left: 3%; top: 5%; cursor: pointer;" ></i>
</a>
</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>
<img src="assets/images/hereisny/cover.png" class="project-img" />
<img src="assets/images/hereisny/cover-pullout.png" class="project-img" />
<img src="assets/images/hereisny/01.png" class="project-img" />
<img src="assets/images/hereisny/02.png" class="project-img" />
<img src="assets/images/hereisny/03.png" class="project-img" />
<img src="assets/images/hereisny/04.png" class="project-img" />
</body>
<script defer src="https://use.fontawesome.com/releases/v5.0.6/js/all.js"></script>
<!-- animsition.css -->
<link rel="stylesheet" href="assets/dist/css/animsition.min.css">
<!-- animsition.js -->
<script src="assets/dist/js/animsition.min.js"></script>
<script>
$(document).ready(function() {
$(".animsition").animsition({
inClass: 'fade-in',
outClass: 'fade-out',
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>
<script>
$('.social').click(function() {
$(this).toggleClass('open');
$('.social-container').toggleClass('active');
});
</script>
</html>