简体   繁体   中英

Css Preloader in apex take a while to load

I am using a css preloader for apex web application. problem is that it takes a while to load after any click , so 1st 1 or 2 seconds it doesn't appear. i want it to b started at the moment when i click something. how to make it load immediately? Code

<script type="text/javascript">
 jQuery(document).ready(function($) { 
    $(window).load(function(){
        $('#preloader').fadeOut('slow',function(){$(this).remove();});
    });
}); 
</script>

try changing slow to fast like this

<script type="text/javascript">
     jQuery(document).ready(function($) {  


    $(window).load(function(){.
        $('#preloader').fadeOut('fast',function(){$(this).remove();});
    });

    }); 
    </script>

or you can also use time duration, check this link for further reference..

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM