放大缩放图片

来源:互联网 发布:virtualbox mac os 11 编辑:程序博客网 时间:2024/05/17 16:15
   // 缩放图片
   functionresizeImg(node,isSmall){
       if(!isSmall){
            $(node).height($(node).height()*1.2);
        }else{
            $(node).height($(node).height()*0.8);
        }
    }
原创粉丝点击