profile-site/main.js

25 lines
886 B
JavaScript
Raw Normal View History

2021-01-14 17:46:52 -05:00
let backButton = document.getElementById("back");
2021-01-14 14:40:08 -05:00
2021-01-14 17:46:52 -05:00
if (window.location.href != "https://meetsquirrel.github.io" || "https://meetsquirrel.github.io#meet") {
backButton.style.opacity = "1";
2021-01-14 14:40:08 -05:00
}
2021-01-14 17:46:52 -05:00
function next() {
2021-01-14 18:08:14 -05:00
if (window.location.href == "https://meetsquirrel.github.io/index.html" || "file:///D:/Documents/GitHub/meetsquirrel.github.io/index.html#meet") {
2021-01-14 17:46:52 -05:00
document.location = "#vegetable-dash";
}
2021-01-14 18:08:14 -05:00
if (window.location.href == "https://meetsquirrel.github.io/index.html#vegetable-dash") {
document.location = "#coming-soon";
}
2021-01-14 17:46:52 -05:00
}
function last() {
2021-01-14 18:08:14 -05:00
if (window.location.href == "https://meetsquirrel.github.io/index.html#vegetable-dash") {
2021-01-14 17:46:52 -05:00
document.location = "#meet";
backButton.style.opacity = "0";
}
2021-01-14 18:08:14 -05:00
if (window.location.href == "https://meetsquirrel.github.io/index.html#coming-soon") {
document.location = "#vegetable-dash";
}
2021-01-14 14:40:08 -05:00
}