Jquery 초점 도 는 그림 전시 효과 코드 에 사 용 됩 니 다.

2599 단어 Jquery포커 스 맵
효과 도 는 다음 과 같다데모 코드:Jquery 그림 전시 초점 도 $(document).ready(function(){ $imageShow=$('#imageShow'); $images=$('#imageSrc li',$imageShow); $imageSwitches=$('#imageSwitch li',$imageShow); if($images.size()>0){ init(); var timer=setInterval(autoSwitch,3000); $imageSwitches.each(function(index,item){ $(item).click(function(){ clearInterval(timer); setTimeout(function(){timer=setInterval(autoSwitch,3000)},3000); $imageSwitches.css('background-color','').eq(index).css('background-color','#E22E51'); if(index!=$imageShow.data('show')){ $imageShow.data('show',index); $images.hide().eq(index).fadeIn('slow'); } }); }); } function autoSwitch(){ $nowIndex=$imageShow.data('show')+1; if($images.size()>$nowIndex){ $imageSwitches.css('background-color','').eq($nowIndex).css('background-color','#E22E51'); $imageShow.data('show',$nowIndex); $images.hide().eq($nowIndex).fadeIn('slow'); }else{ init(); } } function init(){ $imageShow.data('show',0); $images.hide().eq(0).fadeIn('slow'); $imageSwitches.css('background-color','').eq(0).css('background-color','#E22E51'); } });
    • 1
    • 2
    • 3
    • 4
    • 5
[Ctrl+A 전체 선택:외부 Js 를 도입 하려 면 페이지 를 새로 고침 해 야 실행 할 수 있 습 니 다.]

좋은 웹페이지 즐겨찾기