// 改变图片大小
function resizePic(thispic) {
if (thispic.width > 700) {
thispic.width = 700;
}
}
// 显示图片
function showImg(src) {
$.dialog({
title: '查看原图:',
content: `<div><img onload="if(980 < this.offsetWidth) this.width=980;" style="max-width:980px" src="${src}"></div>`
}, { max: false, min: false });
}
// 无级缩放图片大小
function bbImg(o) {
var zoom = parseInt(o.style.zoom, 10) || 100;
zoom += event.wheelDelta / 12;
if (zoom > 0) o.style.zoom = zoom + '%';
return false;
}