Last active
September 21, 2021 07:09
-
-
Save mkk360/8e424c94d6aef838cc6a5aeca9a28a64 to your computer and use it in GitHub Desktop.
Necessary JQuery/Js Code For HTML
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // initializing preloader | |
| $(window).on('load', function() { | |
| var preLoder = $(".preloader"); | |
| preLoder.fadeOut(1000); | |
| // banner img animation | |
| setInterval(function() { | |
| $(".banner .part-img").addClass("active") | |
| }, 500); | |
| }); |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
After FadeOut 1000 Then Class Add