remove unused js files (#1561)

These were leftover files from a docs / site template.

Removing as they are not needed.

Signed-off-by: Charlie Drage <charlie@charliedrage.com>

Signed-off-by: Charlie Drage <charlie@charliedrage.com>
This commit is contained in:
Charlie Drage 2023-01-23 13:31:48 -05:00 committed by GitHub
parent eb9f15b2c6
commit 26d28d58a4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 56 deletions

View File

@ -1,25 +0,0 @@
$(document).ready(function() {
var bgArray = ['1.jpg', '2.jpg', '3.jpg', '4.jpg', '5.jpg'];
var path = '../img/background/';
secs = 5;
bgArray.forEach(function(img){
// caches images, avoiding white flash between background replacements
new Image().src = path + img;
});
function backgroundSequence() {
window.clearTimeout();
var k = 0;
for (i = 0; i < bgArray.length; i++) {
setTimeout(function(){
$('#hero').css('background-image', 'url(' + path + bgArray[k] +')');
if ((k + 1) === bgArray.length) { setTimeout(function() { backgroundSequence() }, (secs * 1000))} else { k++; }
}, (secs * 1000) * i)
}
}
backgroundSequence();
});

View File

@ -1,31 +0,0 @@
var icons = [
'r6',
'daytona',
'zx6r',
'gsxr',
'cbr600rr'
]
var container = document.querySelector('.icons')
function spawn() {
var icon = icons[Math.floor(Math.random() * icons.length)]
var img = document.createElement("IMG")
img.style.right = 25 + Math.random() * 50 + '%'
img.setAttribute('class', 'icon')
img.setAttribute("src", 'img/icons/' + icon + ".png")
container.appendChild(img)
setTimeout(function() {
container.removeChild(img)
}, 3000)
}
setTimeout(function run() {
spawn()
setTimeout(run, 1300 + Math.random() * 400)
}, 1300 + Math.random() * 400)
spawn()