mirror of
https://github.com/neon443/neon443.github.io.git
synced 2026-03-11 07:09:12 +00:00
Bar changes: + each item takes up the same amnt of space + hover: item grows, others shrink + hover: text size increases + if a link, bg color + text color inverts + if not link, bg color is sligtly darker/ligher + if not link clicked, message shows + neon443 is font-size 30 html changes: + removed ids for barItems, unnesccesary + spaced out baritem code to make more readable css changes: + added notlink toast js changes: + added not link toast
13 lines
301 B
JavaScript
13 lines
301 B
JavaScript
function showAlert() {
|
|
alert("Hey! this is under development. i told u not to click.");
|
|
}
|
|
|
|
function notLink() {
|
|
var notLinkToast = document.getElementById("notLinkToast");
|
|
notLinkToast.className = "show";
|
|
setTimeout(
|
|
function() {
|
|
x.className = x.className.replace("show", "");
|
|
}
|
|
, 3000);
|
|
} |