mirror of
https://github.com/neon443/neon443.github.io.git
synced 2026-03-11 07:09:12 +00:00
notLinkTst, fixed fadeout notlink anim
This commit is contained in:
10
script.js
10
script.js
@@ -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);
|
||||
}
|
||||
Reference in New Issue
Block a user