add http website

This commit is contained in:
Matthew Tran
2023-09-11 00:16:44 +00:00
parent 201d3967d1
commit 3e5efaf711
35 changed files with 31 additions and 9 deletions
+10
View File
@@ -0,0 +1,10 @@
$(window).on("load", function() {
IN_DELAY = 250;
$('body').animate({"opacity": "1"}, IN_DELAY);
$(".main").delay(IN_DELAY).animate({"opacity": "1"}, 750);
//for (var i = 7; i >= 1; i--) {
// $(`.main> :nth-child(${i})`).delay(IN_DELAY + 125*i).animate({"opacity": "1"}, 500);
//}
});