blob: 35d649e37ea8845bfc0c03588ecbbe305e2597be (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
$(window).on("load", () => {
$("#udDots")
.fadeOut(300, () => {
$(".typewriter h1").fadeIn();
$("#udBgLeft").animate({left: "-50%"}, 300);
$("#udBgRight").animate({right: "-50%"}, 300, () => {
$("#udPreLoader").fadeOut(10);
});
});
});
|