mirror of
https://github.com/hnasheralneam/hnasheralneam.github.io.git
synced 2024-11-06 15:45:54 -05:00
102 lines
2.4 KiB
JavaScript
102 lines
2.4 KiB
JavaScript
let pageLocation = "meet";
|
|
let backButton = document.getElementById("back");
|
|
let nextButton = document.getElementById("next");
|
|
|
|
function next() {
|
|
if (pageLocation === "meet") {
|
|
document.location = "#vegetable-dash";
|
|
pageLocation = "vegetable-dash";
|
|
}
|
|
else if (pageLocation === "vegetable-dash") {
|
|
document.location = "#gold-rush";
|
|
pageLocation = "gold-rush";
|
|
}
|
|
else if (pageLocation === "gold-rush") {
|
|
document.location = "#coming-soon";
|
|
pageLocation = "coming-soon";
|
|
}
|
|
buttonVisiblility();
|
|
}
|
|
|
|
function last() {
|
|
if (pageLocation === "vegetable-dash") {
|
|
document.location = "#meet";
|
|
pageLocation = "meet";
|
|
}
|
|
else if (pageLocation === "gold-rush") {
|
|
document.location = "#vegetable-dash";
|
|
pageLocation = "vegetable-dash";
|
|
}
|
|
else if (pageLocation === "coming-soon") {
|
|
document.location = "#gold-rush";
|
|
pageLocation = "gold-rush";
|
|
}
|
|
buttonVisiblility();
|
|
}
|
|
|
|
function buttonVisiblility() {
|
|
if (pageLocation != "meet") {
|
|
backButton.style.opacity = "1";
|
|
}
|
|
else {
|
|
backButton.style.opacity = "0";
|
|
}
|
|
if (pageLocation != "coming-soon") {
|
|
nextButton.style.opacity = "1";
|
|
}
|
|
else {
|
|
nextButton.style.opacity = "0";
|
|
}
|
|
where();
|
|
}
|
|
|
|
function where() {
|
|
let meetIndicator = document.getElementById("meetIndicator");
|
|
let vegIndicator = document.getElementById("vegetable-dashIndicator");
|
|
let goldIndicator = document.getElementById("gold-rushIndicator");
|
|
let comingIndicator = document.getElementById("coming-soonIndicator");
|
|
|
|
if (pageLocation === "meet") {
|
|
meetIndicator.style.backgroundColor = "#262626";
|
|
}
|
|
else {
|
|
meetIndicator.style.backgroundColor = "#d6d6d6";
|
|
}
|
|
if (pageLocation === "vegetable-dash") {
|
|
vegIndicator.style.backgroundColor = "#262626";
|
|
}
|
|
else {
|
|
vegIndicator.style.backgroundColor = "#d6d6d6";
|
|
}
|
|
if (pageLocation === "gold-rush") {
|
|
goldIndicator.style.backgroundColor = "#262626";
|
|
}
|
|
else {
|
|
goldIndicator.style.backgroundColor = "#d6d6d6";
|
|
}
|
|
if (pageLocation === "coming-soon") {
|
|
comingIndicator.style.backgroundColor = "#262626";
|
|
}
|
|
else {
|
|
comingIndicator.style.backgroundColor = "#d6d6d6";
|
|
}
|
|
}
|
|
|
|
function ind(page) {
|
|
document.location = "#" + page;
|
|
pageLocation = page;
|
|
buttonVisiblility();
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Transparent text moving background
|
|
|
|
/* Links */
|
|
|
|
/* Should have nice hover that shows some content from link */
|