-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
149 lines (141 loc) · 7.45 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
144
145
146
147
148
149
<!-- Bada Bing, Bada Boom
The thoughts, ideas, and opinions both spoken and internalized
are the forces, that traverse all platforms, all standards
and all norms to form their unique class, unique style, and a
unique kind of ideology that future generations will look up to.
We are #!/Shabang. (c) 2019/2020 Shabang Systems, LLC. All rights reserved
unless explicitly stated otherwise or where it is prohibited by law -->
<!DOCTYPE html>
<html>
<head>
<title>#!/Shabang</title>
<link href="css/bootstrap/bootstrap.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Ubuntu+Mono&display=swap" rel="stylesheet">
<link href="css/masters/A.css" rel="stylesheet">
<link href="css/index.css" rel="stylesheet">
<link rel="shortcut icon" type="image/png" href="resources/slug.png"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body onload="loadScripts()">
<div id="content-wrapper">
<div id="nav-wrapper" style="display: none">
<!-- style="box-shadow: 0px 24px 2px -25px black;"-->
<nav class="navbar navbar-expand-sm navbar-light" style="background-color: #f0f0f088">
<a class="navbar-brand" href="/">
<div class="container-fluid">
<div class="row no-gutters">
<div class="col-auto d-flex">
<img class="d-none d-sm-block" id="header-slug" src="resources/slug.png" alt="">
</div>
<div class="col-auto d-flex" style="padding: 0; align-content: initial">
<h1 class="header-text d-none d-sm-block" style="padding-left: 7px">/Shabang</h1>
<h1 class="header-text d-block d-sm-none">#!/Shabang</h1>
</div>
</div>
</div>
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarText">
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<a class="nav-link" href="/">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./project.html">Projects</a>
</li>
<li class="nav-item">
<a class="nav-link" href="under-development.html">About</a>
</li>
</ul>
</div>
</nav>
</div>
<div id="splash", style="position: absolute; z-index:10; display: none;">
<div class="mobile-spacer">
<!--Stupid spacer solution because of lack of position flexiblity-->
<br><br><br><br><br><br>
</div>
<div style="text-align: center; vertical-align: middle">
<h1 class="body-header" id="huge-center-text">Solutions That <p style="font-weight: 800">#!/Bangs</p></h1>
<h2 class="body-subhead" style="padding-top: 10px; font-size: 4vw">Load! Site.</h2>
</div>
</div>
<div id="story-wrapper" style="display:none">
<div id="landing-background">
<div id="scroll-container">
<div id="scroll-set">
<h1 id="home-scroll-intro">We create to</h1>
<h1 id="home-scroll-0" class="home-scroll">inspire.</h1>
<h1 id="home-scroll-1" class="home-scroll">innovate.</h1>
<h1 id="home-scroll-2" class="home-scroll">change.</h1>
<h1 id="home-scroll-3" class="home-scroll">have impact.</h1>
</div>
</div>
<div id="intro-blurb">
We are a student team, a creative agency, and a development studio. <br /> We are <p style="display: inline-block; font-family: 'Open Sans', sans-serif; font-weight: 700;">#!/Shabang</p>
</div>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.4.1.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
<script src="js/bootstrap/bootstrap.min.js"></script>
<script>
var tmOut;
function loadScripts() {
// Load your scripty scripts here, whatever.
// showpage();
showPage();
}
function showPage() {
$("#splash").css("display", "none");
$("#nav-wrapper").css("opacity", "0");
$("#story-wrapper").css("opacity", "0");
$("#nav-wrapper").css("display", "block");
$("#story-wrapper").css("display", "block");
$("#nav-wrapper").animate({"opacity": "1"}, 300);
$("#story-wrapper").animate({"opacity": "1"}, 300);
chooseScroll();
}
function sleep(ms) {
return new Promise(resolve => setTimeout(resolve, ms));
}
function choose(choices) {
var index = Math.floor(Math.random() * choices.length);
return choices[index];
}
function chooseScroll() {
var scrollers = ["#home-scroll-0", "#home-scroll-1", "#home-scroll-2", "#home-scroll-3"];
let scroller = choose(scrollers);
$(scroller).css("display", "inline-block");
}
// async function scroll() {
// var scrollers = ["#home-scroll-0", "#home-scroll-1", "#home-scroll-2", "#home-scroll-3"];
// for (var i=0; i<=4; i++) {
// if (i==1) {
// await sleep(1500);
// }
// $(scrollers[i-1]).fadeTo(500, 0, function(){
// $(scrollers[i]).css({
// "opacity":"0",
// "display":"inline-block",
// })
// $(scrollers[i]).animate({opacity:1}, 750)
// })
// if (i!=0 && i!=4) {
// await sleep(2000);
// }
// }
// $("#scroll-set").hide(1000, function(){
// $("#branding").css({
// "opacity":"0",
// "display":"inline-block",
// })
// $("#branding").animate({opacity:1}, 750)
// })
// }
</script>
</body>
</html>