/* 圖片移動檢視 (商品詳細頁) (推薦商品) */ var movePhotoShow = function(hs){ var index = 1; var total = Math.ceil($("#" + hs.ul).children('li').size() / hs.num); this.init = function(){ $("#" + hs.div).find("#" + hs.left).click(function(){ if(index <= 1){ return; } else{ index--; $("#" + hs.ul).animate({ "left": "+=" + hs.width }); }; }); $("#" + hs.div).find("#" + hs.right).click(function(){ if(index >= total){ return; } else{ index++; $("#" + hs.ul).animate({ "left": "-=" + hs.width }); }; }); }; };