mirror of
https://github.com/hnasheralneam/hnasheralneam.github.io.git
synced 2024-11-07 08:05:54 -05:00
24 lines
886 B
JavaScript
24 lines
886 B
JavaScript
let backButton = document.getElementById("back");
|
|
|
|
if (window.location.href != "https://meetsquirrel.github.io" || "https://meetsquirrel.github.io#meet") {
|
|
backButton.style.opacity = "1";
|
|
}
|
|
|
|
function next() {
|
|
if (window.location.href == "https://meetsquirrel.github.io/index.html" || "file:///D:/Documents/GitHub/meetsquirrel.github.io/index.html#meet") {
|
|
document.location = "#vegetable-dash";
|
|
}
|
|
if (window.location.href == "https://meetsquirrel.github.io/index.html#vegetable-dash") {
|
|
document.location = "#coming-soon";
|
|
}
|
|
}
|
|
|
|
function last() {
|
|
if (window.location.href == "https://meetsquirrel.github.io/index.html#vegetable-dash") {
|
|
document.location = "#meet";
|
|
backButton.style.opacity = "0";
|
|
}
|
|
if (window.location.href == "https://meetsquirrel.github.io/index.html#coming-soon") {
|
|
document.location = "#vegetable-dash";
|
|
}
|
|
}
|