function imgshow(imglist,imgshow,number,width,direction){ var objul = imglist.find("ul"); var objli = imglist.find("li"); var objcimg = objli.children("img"); var objimg = imgshow.find("img"); var objup = imglist.prev(); var objdown = imglist.next(); if(direction == "margin-left"){ objul.width(objli.length*width*2); }else{ objul.height(objli.length*width*2); } objli.click(function(){ prosliderun(objli.index(this)); }) objup.click(function(){ prosliderun(objli.index(objul.children("li.cur"))-1); }) objdown.click(function(){ prosliderun(objli.index(objul.children("li.cur"))+1); }) function prosliderun(n){ if(n>=objli.length){n=objli.length-1;return false;} if(n<0){n=0;return false;} if(n<=1){ if(direction == "margin-left"){ objul.animate({"margin-left":0},300); }else{ objul.animate({"margin-top":0},300); }; }else if(n>=objli.length-(number-1) && objli.length-(number-1)>0){ if(direction == "margin-left"){ objul.animate({"margin-left":-(objli.length-number)*width+"px"},300); }else{ objul.animate({"margin-top":-(objli.length-number)*width+"px"},300); }; }else if(objli.length-(number-1)>0){ if(direction == "margin-left"){ objul.animate({"margin-left":-(n-1)*width+"px"},300); }else{ objul.animate({"margin-top":-(n-1)*width+"px"},300); }; } objli.removeclass("cur").eq(n).addclass("cur"); // objimg.fadeto(300,0,function(){ // objimg.attr("src",""); // objimg.fadeto(300,1,function(){ // objimg.attr("src",objli.eq(n).children("img").attr("data-img")); // objimg.siblings("p").html(objli.eq(n).children("img").attr("data-title")); // }); // }) var url = site_url + "ajax/ajax_h"; var id = objul.find("li.cur").attr("data-id"); $(".honor-con").load(url+"/"+id); //$(".honor-con").load(url); }; prosliderun(0); }