2 つの異なる div クラスで同時にフェード効果を試しています。そのためには、2 つの異なるスクリプトが必要で、2 つの div に対して同じスクリプトを実行すると、遅れます。(.fadein,.fadeo) のような同じスクリプトで両方の div を実行する方法はありますか? FIDDLE- jsfiddle.net/562am/。
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script> //Function 1
$(function(){
$('.fadeo img:gt(0)').hide();
setInterval(function(){$('.fadeo :first-child').fadeOut().next('img').fadeIn().end().appendTo('.fadeo');}, 2000);
});
</script>
<script> //Function 2
$(function(){
$('.fadein img:gt(0)').hide();
setInterval(function(){$('.fadein :first-child').fadeOut().next('img').fadeIn().end().appendTo('.fadein');}, 2000);
});
</script>