notLinkTst, fixed fadeout notlink anim

This commit is contained in:
2023-06-06 17:43:09 +01:00
parent 97c743c065
commit 80e27eaa56
3 changed files with 38 additions and 28 deletions

View File

@@ -1,12 +1,12 @@
function showAlert() {
alert("Hey! this is under development. i told u not to click.");
}
};
function notLink() {
var notLinkToast = document.getElementById("notLinkToast");
notLinkToast.className = "show";
function ntLnk() {
var ntLnkToast = document.getElementById("ntLnkToast");
ntLnkToast.className = "show";
setTimeout(
function() {
notLinkToast.className = notLinkToast.className.replace("show", "");
ntLnkToast.className = ntLnkToast.className.replace("show", "");
}, 3000);
}