$(document).ready(function(){ var ul_pic_now_index = 1; $("#leftBt").click(function(){ if(ul_pic_now_index <= 1){ return ; } else{ ul_pic_now_index--; } $("#ul_pic").animate({"left": "+=952"},1500); }); $("#RightBt").click(function(){ var allPages = Math.ceil($("#ul_pic").children().size() / 8); if(ul_pic_now_index > allPages || ul_pic_now_index + 1 > allPages){ return ; } else{ ul_pic_now_index++; } $("#ul_pic").animate({"left": "-=952"},1500); }); $(".slist_img").css({"opacity": "0.5"}).hover( function(){ if($(this).css('opacity') != '0.99'){ $(this).css({"opacity": ""}); } }, function(){ if($(this).css('opacity') != '0.99'){ $(this).css({"opacity": "0.5"}); } }).click(function(){ $(this).parents("ul").children("li").css({"background": ""}).end(); $(this).css({"opacity": "0.99"}).parents("li").css({"background": "url(/images/arrow_up.gif) top center no-repeat"}); $.post('ajax_index_pic.php', {ID: $(this).attr('b_ID')}, function(html){ $("#index_pic").hide().html(html).find('img').load(function(){ $("#index_pic").show(200); }); },'html'); }); });