Files
neon443.github.io/script.js
Nihaal Sharma 98f5fe3d38 prefected changes in last commit
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
2023-06-04 18:17:17 +01:00

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);
}