-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
211 lines (205 loc) · 8.47 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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<title>TheStartupBox</title>
<meta name="theme-color" content="lightseagreen">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/Beg-in/[email protected]/dist/frow.min.css">
<link href="https://fonts.googleapis.com/css?family=Roboto:100,300,400" rel="stylesheet">
<script type="text/javascript" src="https://cdn.rawgit.com/Beg-in/letsGo/0.2.3/letsgo.js" async></script>
<style>
html, body {
height: 100%;
background-color: lightseagreen;
font-family: Roboto;
color: #fff;
}
a, a:hover, a:focus, a:active {
color: #fff;
text-decoration: none;
}
li {
margin: 0 6px 5px;
font-weight: 400;
}
button:not(.reset), button:not(.reset):hover, button:not(.reset):active, button:not(.reset):focus {
background-color: lightseagreen;
border: 2px solid #fff;
}
.title {
text-align: center;
margin-top: 65px;
font-size: 40px;
font-weight: 100;
}
.info-contain {
height: 160px;
position: relative;
}
.info {
font-weight: 400;
text-align: center;
}
button.info-button {
text-align: center;
width: 70px;
margin-left: -35px;
top: 20px;
left: 50%;
font-weight: 100;
position: absolute;
}
.home-to {
text-align: center;
width: 100%;
margin: 20px 0 5px;
font-size: 20px;
font-weight: 100;
}
.hidden-info.letsGo-hide-remove, .hidden-info.letsGo-hide-add {
transition: opacity 1s;
opacity: 0;
}
.hidden-info.letsGo-hide-remove-active, .hidden-info.letsGo-hide-add-activef {
opacity: 1;
}
@keyframes cube-spin {
0% { transform: rotate3d(0, 0, 0, 0deg); }
5% { transform: rotate3d(0, 1, 1, 300deg); }
10% { transform: rotate3d(0, .3, 1, 90deg); }
25% { transform: rotate3d(.75, .25, .10, 230deg); }
50% { transform: rotate3d(.75, .25, .10, -390deg); }
75% { transform: rotate3d(.1, 3, 2, 600deg); }
100% { transform: rotate3d(0, 0, 0, 0deg); }
}
#scene {
perspective: 800px;
transition: transform 0.5s;
}
#scene:hover {
transform: scale(1.1);
}
#cube {
position:relative;
width: 150px;
height: 150px;
transform-style: preserve-3d;
transform: rotate3d(0,0,0,0deg);
animation: cube-spin 60s ease infinite;
}
#cube:focus, #cube:active {
border: none;
outline: none;
}
.side {
position: absolute;
width: 150px;
height: 150px;
border: 1px dashed #fff;
background-color: lightseagreen;
}
#scene.cube-white .side {
opacity: 0.5;
background-color: #f7f7f7;
border-color: lightseagreen;
}
#scene.cube-white-add .side, #scene.cube-white-remove .side {
transition: background-color 1s, border-color 1s, opacity 1s;
}
#scene.cube-white-add-active .side {
opacity: 0.5;
background-color: #f7f7f7;
border-color: lightseagreen;
}
#scene.cube-white-remove-active .side {
opacity: 1;
border: 1px dashed #fff;
background-color: lightseagreen;
}
.back {
transform: translateZ(-75px);
}
.left {
transform: translateX(-75px) rotateY(90deg);
}
.right {
transform: translateX(75px) rotateY(90deg);
}
.top {
transform: translateY(-75px) rotateX(90deg);
}
.bottom {
transform: translateY(75px) rotateX(90deg);
}
.front {
transform: translateZ(75px);
}
</style>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-86661411-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<div class="frow centered-column">
<div id="scene">
<div id="cube" onclick="letsGo('#scene', 'toggle', '.cube-white');letsGo('.hidden-info', 'toggle');">
<div class="side back"></div>
<div class="side left"></div>
<div class="side right"></div>
<div class="side top"></div>
<div class="side bottom"></div>
<div class="side front"></div>
</div>
</div>
<div class="title" onclick="letsGo('#scene', 'toggle', '.cube-white');letsGo('.hidden-info', 'toggle');">
The Startup Box
</div>
<div class="mt-20">
Coming soon
</div>
<!-- <a href="https://goo.gl/maps/VrDA5irxu2t">501 N Main St #2, Bloomington, IL</a> -->
<div class="info-contain">
<!-- <button class="info-button hidden-info" onclick="letsGo('#scene', 'toggle', '.cube-white');letsGo('.hidden-info', 'toggle');">
Info
</button> -->
<div class="info hidden-info letsGo-hide" hidden>
<div class="home-to">Featuring</div>
<ul class="frow">
<li><a href="http://qikpix.io">Qikpix</a></li>
<li><a href="http://presto.media">Presto Media</a></li>
<li><a href="http://bitaml.com">BitAML</a></li>
<li><a href="http://vrleague.org">VR League</a></li>
<li><a href="http://beg.in">Beg.in</a></li>
<li><a href="https://www.majorclarity.com">MajorClarity</a></li>
</ul>
<div class="home-to">Contact</div>
<ul class="frow">
<li>
<script type="text/javascript">
//<![CDATA[
<!--
var x="function f(x){var i,o=\"\",ol=x.length,l=ol;while(x.charCodeAt(l/13)!" +
"=43){try{x+=x;l+=l;}catch(e){}}for(i=l-1;i>=0;i--){o+=x.charAt(i);}return o" +
".substr(0,ol);}f(\")211,\\\"aic~tk5|n\\\"\\\\;,!?b3%+8227%71$(K~RZUS700\\\\" +
"230\\\\k420\\\\it\\\\V^EY[610\\\\710\\\\pXAJGU010\\\\]KARTTm771\\\\io~rmXxp" +
"{})}e|fo`.W7omun%e? )n220\\\\030\\\\010\\\\220\\\\010\\\\610\\\\V300\\\\030" +
"\\\\020\\\\130\\\\600\\\\120\\\\630\\\\420\\\\\\\"(f};o nruter};))++y(^)i(t" +
"AedoCrahc.x(edoCrahCmorf.gnirtS=+o;721=%y;i=+y)211==i(fi{)++i;l<i;0=i(rof;h" +
"tgnel.x=l,\\\"\\\"=o,i rav{)y,x(f noitcnuf\")" ;
while(x=eval(x));
//-->
//]]>
</script>
</li>
</ul>
</div>
</div>
</div>
</body>
</html>