我的初始页面出现问题。基本上,它加载Cycle插件,该插件应用于起始页面的所有按钮。它运行正常,唯一的问题是在第一次加载时它会冻结浏览器大约10秒钟,这是不可接受的。
<script type="text/javascript">
jQuery(function($){
// Cycle plugin
$('.slides').cycle();
$('.slideshow-block').mouseenter(
function(){
$('.slides').cycle("stop");
$(this).find('.slides').addClass('active').cycle({
fx: 'fade',
speed: 80,
timeout: 1,
autostop: 3,
startingSlide: 0,
delay: -400,
});
})
$('.slideshow-block').mouseleave(
function(){
$(this).find('.slides').cycle(0, 'fade').cycle("stop");
});
} );
onload=function() {
document.getElementById('buttons-table').className='displayed';
}
</script>
我100%确定这是由行$('.slides').cycle();
引起的,因为没有它就会正常加载,但无法正常工作。
页面网址为http://www.east-line.co/test/index.php,供参考。