我不太擅长实现javascript,并且预加载器在我网站上的特定页面上工作似乎存在问题。似乎与另一个正在加载内容的脚本冲突。
两个脚本都独立工作,但不能一起工作。我敢肯定这很简单,但是我对javascript不够了解。
<script type="text/javascript">
$(window).on('load', function() { // makes sure the whole site is loaded
$('#status').fadeOut(); // will first fade out the loading animation
$('#preloader').delay(350).fadeOut('slow'); // will fade out the white DIV that covers the website.
$('body').delay(350).css({'overflow':'visible'});})</script>
<script type="text/javascript">
$(window).load(function() {
$(".about").fadeTo(300, 1);
});
</script>