// 缩放图片 functionresizeImg(node,isSmall){ if(!isSmall){ $(node).height($(node).height()*1.2); }else{ $(node).height($(node).height()*0.8); } }