// JavaScript Document $(function(){ var page=1; var i=4; var $p_Div=$(".pic_content"); var $picDiv=$(".pic_lists"); var picNum=$picDiv.children("ul").children("li").length; var page_count=Math.ceil(picNum/4); var $pDiv_w=$p_Div.width()+12; $(".right_btn").click(function(){ if(page_count>page){ $picDiv.animate({left:'-'+page*$pDiv_w+"px"},"normal"); page++; $(".left_btn").css({'background':'url(/jby/images/leftstart.jpg) no-repeat'}); if(page>=page_count){ $(this).css({'background':'url(/jby/images/rightstop.jpg) no-repeat'}); }else{ $(this).css({'background':'url(/jby/images/rightstart.jpg) no-repeat'}); } } $(this).siblings(".highlight_tip").find("span").eq((page-1)).addClass("current").siblings().removeClass("current"); }); $(".left_btn").click(function(){ if(page>1){ $picDiv.animate({left:"+="+$pDiv_w+'px'},"normal"); page--; $(".right_btn").css({'background':'url(/jby/images/rightstart.jpg) no-repeat'}); if(page<=1){ $(this).css({'background':'url(/jby/images/leftstop.jpg) no-repeat'}); }else{ $(this).css({'background':'url(/jby/images/leftstart.jpg) no-repeat'}); } } $(this).siblings(".highlight_tip").find("span").eq((page-1)).addClass("current").siblings().removeClass("current"); }); })