mirror of
https://github.com/neon443/neon443.github.io.git
synced 2026-03-11 07:09:12 +00:00
toast slill lags when animation is done, dunno how to fix added shadow and bg blur to make the toast fit in cleaned up code aswell
12 lines
321 B
JavaScript
12 lines
321 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() {
|
|
notLinkToast.className = notLinkToast.className.replace("show", "");
|
|
}, 3000);
|
|
} |