我正在整理一个网站并在页面加载之间出现一些白色闪烁。我尝试预加载所有大图像,看看是否是问题所在,但仍然没有得到平滑的过渡。我所有的 css 和 js 文件似乎也以正确的顺序加载。有任何想法吗?该网站建立在带有全屏背景插件的 Wordpress CMS 上。
js预加载
<script type="text/javascript">
$( function(){
$.preload( '<?php echo get_bloginfo('template_directory');?>/images/badge.png',
'<?php echo get_bloginfo('template_directory');?>/images/bg.png',
'<?php echo get_bloginfo('template_directory');?>/images/header.png',
'<?php echo get_bloginfo('template_directory');?>/images/eagle_header.png',
'<?php echo get_bloginfo('template_directory');?>/images/paper_header.png',
'<?php echo get_bloginfo('template_directory');?>/images/left_badge.png',
'<?php echo get_bloginfo('template_directory');?>/images/right.png',
'<?php echo get_bloginfo('template_directory');?>/images/left.png',
'<?php echo get_bloginfo('template_directory');?>/images/footer.png',
'<?php echo get_bloginfo('template_directory');?>/images/logo.png'
);
});
</script>