这是我的第一个问题。我不明白为什么我的网站 www.enjoyriberadelduero.com 的背景动画在 Firefox 中会加速。我看过其他问题,但似乎没有得到解决。脚本它的:
<script type="text/javascript">
jQuery(document).ready(function($) {
setInterval(function(){
$('#full-bg img.active').animate({opacity:0},640, function(){
$(this).removeClass('active');
})
if($('#full-bg img.active').next().length>0)
$('#full-bg img.active').next().animate({opacity:1},640).addClass('active');
else
$('#full-bg img:first').animate({opacity:1},640).addClass('active');`enter code here`
} ,6400); //duración total del script.
$('#full-bg img:first').animate({opacity:1},500).addClass('active');
});
</script>
真的谢谢你,我为我的英语道歉。
编辑---->我认为它已经修复了,谢谢大家的关注:
<script type="text/javascript">
jQuery(document).ready(function($) {
setInterval(function(){
$('#full-bg img.active').stop(true).animate({opacity:0},350, function(){
$(this).removeClass('active');
})
if($('#full-bg img.active').next().length>0) //Si hay imagen siguiente
$('#full-bg img.active').next().animate({opacity:1},350).addClass('active');
else //si es el final d ela lista
$('#full-bg img:first').animate({opacity:1},350).addClass('active');
} ,2500); //duración total del script.
$('#full-bg img:first').stop(true,true).animate({opacity:1},200).addClass('active');
});
</script>