-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
317 lines (283 loc) · 14.2 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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
<!DOCTYPE HTML>
<!-- ALL RIGHTS RESERVED TO NICK#7925 -->
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Home</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="ScatterVolt Website" />
<meta name="keywords" content="ScatterVolt" />
<link rel="shortcut icon" href="gallery/marc.jpg" />
<!-- Facebook Open Graph -->
<meta name="og:title" content="Home" />
<meta name="og:description" content="ScatterVolt Website" />
<meta name="og:image" content="https://scattervolt.com/gallery/marc.jpg" />
<meta name="og:type" content="article" />
<meta name="og:url" content="https://scattervolt.com" />
<!-- Facebook Open Graph end -->
<link href="css/bootstrap.min.css" rel="stylesheet" type="text/css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://www.youtube.com/iframe_api"></script>
<script src="js/bootstrap.min.js" type="text/javascript"></script>
<script src="js/main.js" type="text/javascript"></script>
<link href="css/font-awesome/font-awesome.min.css" rel="stylesheet" type="text/css" />
<link href="css/site.css" rel="stylesheet" type="text/css" />
<link href="css/common.css" rel="stylesheet" type="text/css" />
<link href="css/index.css" rel="stylesheet" type="text/css" />
<link href="css/animate.css" rel="stylesheet" type="text/css" />
<!--[if lt IE 9]>
<script src="js/html5shiv.min.js"></script>
<![endif]-->
<!-- Piwik -->
<script type="text/javascript">
var _paq = _paq || [];
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function () {
var u = "//scattervolt.com/analytics/";
_paq.push(['setTrackerUrl', u + 'piwik.php']);
_paq.push(['setSiteId', '1']);
var d = document,
g = d.createElement('script'),
s = d.getElementsByTagName('script')[0];
g.type = 'text/javascript';
g.async = true;
g.defer = true;
g.src = u + 'piwik.js';
s.parentNode.insertBefore(g, s);
})();
</script>
<!-- End Piwik Code -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-113610850-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-113610850-1');
</script>
<!-- Nick's Animation Stuff -->
<style>
.delay-1 {
animation-delay: 0.5s;
}
.delay-2 {
animation-delay: 1.5s;
}
.delay-3 {
animation-delay: 2s;
}
.delay-4 {
animation-delay: 3s;
}
</style>
<!-- End Nick's Animation Stuff -->
<!-- Start Nick's Auto Updater-->
<script>
let videoIDs = []
$( document ).ready(() => {
var YouTubeAPI = "https://www.googleapis.com/youtube/v3/search?part=snippet&channelId=UCl6ulw6cn3npwxkg_56Ee_w&maxResults=3&order=date&type=video&key=AIzaSyDRXvrc71eD6llQCW7z79Pgcd8z4VSUS-g";
$.getJSON( YouTubeAPI, function( data ){
$.each( data.items, function(i, item) {
$(".youtube-player").eq(i).attr('src', "https://www.youtube.com/embed/" + item.id.videoId + "?controls=1&amp;showinfo=1&amp;rel=1;enablejsapi=1");
$(".youtube-player").eq(i).attr('id', item.id.videoId)
videoIDs.push(item.id.videoId)
})
})
});
</script>
<!-- End Nick's Auto Updater -->
<script>
function callPlayer(frame_id, func, args) {
if (window.jQuery && frame_id instanceof jQuery) frame_id = frame_id.get(0).id;
var iframe = document.getElementById(frame_id);
if (iframe && iframe.tagName.toUpperCase() != 'IFRAME') {
iframe = iframe.getElementsByTagName('iframe')[0];
}
if (iframe) {
// Frame exists,
iframe.contentWindow.postMessage(JSON.stringify({
"event": "command",
"func": func,
"args": args || [],
"id": frame_id
}), "*");
}
}
</script>
<!-- Code to stop multiple videos playing at the same time -->
<script>
let currentlyPlaying = null;
let player_id;
function chain() {
setTimeout(() => {
for (i=1;i<=3;i++) {
player_id = videoIDs[(i-1)];
player = new YT.Player(player_id, {
events: {
'onStateChange': (event) => {
console.log(event)
player_id = event.target.f.id;
if (event.data == 1) {
if (currentlyPlaying != null && currentlyPlaying != player_id) {
callPlayer(currentlyPlaying, 'pauseVideo');
currentlyPlaying = player_id;
}
else if (currentlyPlaying == null) {
currentlyPlaying = player_id;
}
}
}
}
});
}
}, 1000)
}
$(document).ready(() => {
chain();
})
</script>
</head>
<body>
<div class="root">
<!-- Start Nav Bar -->
<div class="vbox wb_container" id="wb_header">
<div class="wb_cont_inner">
<div id="navBar" class="wb_element wb-menu animated fadeInDown">
<ul class="hmenu">
<li class="active"><a href="index.html" target="_self">Home</a></li>
<li><a href="contact.html" target="_self">Contact Me</a></li>
<li><a href="applications.html" target="_self">Discord Applications</a></li>
<li><a href="ssb.html" target="_self">Super Smash Builds!</a></li>
<li><a href="https://scattervolt.com/forum" target="_blank">Forum</a></li>
<li><a href="https://scattervolt.com/garagesale" target="_blank">Garage Sale</a></li>
</ul>
<div class="clearfix"></div>
</div>
<!-- End Nav Bar -->
<div id="marcPic" class="wb_element wb_element_picture">
<a href="#">
<img class="fadeInDown animated" alt="Marc" src="gallery/marc.jpg">
</a>
</div>
<div id="smallScatterVolt" class="wb_element" style=" line-height: normal;">
<h5 class="wb-stl-subtitle fadeInDown animated">
<strong>
<a href="#">
<span style="color:rgba(255,200,0,1);">
<span class="wb_tr_ok">ScatterVolt</span>
</span>
</a>
</strong>
</h5>
</div>
</div>
<div class="wb_cont_outer"></div>
<div class="wb_cont_bg"></div>
</div>
<!-- All the About Me stuff -->
<div class="vbox wb_container" id="wb_main">
<div class="wb_cont_inner">
<div id="aboutLine" class="wb_element wb-elm-orient-horizontal">
<div class="wb-elm-line"></div>
</div>
<div id="aboutMeTitle" class="wb_element" style=" line-height: normal;">
<h1 class="wb-stl-heading1 fadeInUp animated" style="text-align: center;">About Me</h1>
</div>
<div id="aboutDesc" class="wb_element" style=" line-height: normal;">
<h2 class="wb-stl-heading2 animated fadeIn">Hi - I'm Marc Aranibar, Star of the ScatterVolt YouTube channel, and the most hardware obsessed 20 year
old you’ll find on YouTube!</h2>
<p id="longText" class="wb-stl-normal animated fadeIn">Coming from someone who got into PC Gaming in high school, I love showing people of all backgrounds how
to get into PC gaming cheaply through my budget gaming pc build guide videos, gaming peripheral reviews,
helpful tutorials and more. I couldn’t be more grateful for where I am with my channel, my staff,
and my many fans, so I hope to expand my channel to as many people as possible in the future!</p>
<br>
<p class="wb-stl-normal animated fadeIn">Feel free to contact me at:
<a href="mailto:contact@scattervolt.com">contact@scattervolt.com</a>
</p>
<br>
<p class="wb-stl-normal animated fadeIn">Thanks for stopping by,</p>
<br>
<p class="wb-stl-normal animated fadeIn">Marc Aranibar, ScatterVolt </p>
</div>
<!-- Title etc-->
<div id="bigScatterVolt" class="wb_element" style=" line-height: normal;">
<h4 class="wb-stl-pagetitle fadeIn delay-2 animated" style="text-align: center;">
<span style="color:rgba(255,200,0,1);">ScatterVolt</span>
</h4>
</div>
<div id="subtitle" class="wb_element animated zoomIn delay-1" style=" line-height: normal;">
<p style="text-align: center;">
<span class="wb-stl-highlight">High Quality Tech Content on YouTube!</span>
</p>
</div>
<div id="businessContactBtn" class="wb_element fadeIn animated">
<a class="wb_button fadeInDown animated" href="mailto:contact@scattervolt.com">
<span>Business Contact</span>
</a>
</div>
<!-- Little Buttons -->
<div id="youtubeBtn" class="wb_element wb_element_picture">
<a href="https://youtube.com/scattervolt" title="ScatterVolt YouTube" target="1">
<img class="animated fadeInLeft" alt="YouTube" src="gallery/youtube.png">
</a>
</div>
<div id="twitterBtn" class="wb_element wb_element_picture">
<a href="https://twitter.com/MarcAranibar" title="Twitter" target="1">
<img class="animated fadeInLeft" alt="Twitter" src="gallery/twitter.png">
</a>
</div>
<div id="instagramBtn" class="wb_element wb_element_picture">
<a href="https://instagram.com/scattervolt" title="ScatterVolt Instagram" target="1">
<img class="animated fadeInRight" alt="Instagram" src="gallery/instagram.png">
</a>
</div>
<div id="discordBtn" class="wb_element wb_element_picture">
<a href="https://scattervolt.com/discord" title="ScatterVolt Discord" target="1">
<img class="animated fadeInRight" alt="Discord" src="gallery/discord.png">
</a>
</div>
<!-- End Little Buttons -->
<!-- Start YT Vids [LEFT TO RIGHT] -->
<div id="video1" class="wb_element videos">
<iframe title="YouTube video player" class="youtube-player animated fadeIn delay-4" allowfullscreen="yes"
type="text/html" src=""
frameborder="0"></iframe>
</div>
<div id="video2" class="wb_element videos">
<iframe title="YouTube video player" class="youtube-player animated fadeIn delay-4" allowfullscreen="yes"
type="text/html" src=""
frameborder="0"></iframe>
</div>
<div id="video3" class="wb_element videos">
<iframe title="YouTube video player" class="youtube-player animated fadeIn delay-4" allowfullscreen="yes"
type="text/html" src=""
frameborder="0"></iframe>
</div>
<div id="mostRecent" class="wb_element" style=" line-height: normal;">
<p class="wb-stl-custom3 animated fadeIn">
<a style="color: #8f8f8f;text-decoration: none" target="_blank" href="gallery/mlg-marc.png">M</a>OST RECENT</p>
</div>
<!-- End YT Vids -->
</div>
</div>
<div class="wb_cont_outer"></div>
<div class="wb_cont_bg"></div>
</div>
<div class="vbox wb_container" id="wb_footer">
<div class="wb_cont_inner" style="height: 124px;">
<div id="footer" class="wb_element" style=" line-height: normal;">
<p class="wb-stl-footer">© 2018 Marc Aranibar and Nick#7925 -
<a href="http://scattervolt.com">ScatterVolt.com</a>
</p>
<p class="wb-stl-footer">By using this site, you are bound by the <a href="https://www.youtube.com/t/terms">YouTube TOS.</a> and <a href="http://www.google.com/policies/privacy">Google Privacy Policy</a></p>
</div>
</div>
<div class="wb_cont_outer"></div>
</div>
<div class="wb_sbg"></div>
</div>
</body>
</html>