<html> <head> </head> <body> <div style="display:table;text-align:center;width:100%;height:100%;" onm ousewheel="bbimg();"> <span style="display:table-cell;vertical-align:middle;"> <img id="img1" src="https://www.baidu.com/img/baidu_jgylogo3.gif" /> </span> </div> <script type="text/javascript"> function bbimg(){ var img=document.getElementById("img1"); var zoom=parseInt(img.style.zoom, 10) || 100; zoom+=event.wheelDelta/12*3; if(zoom>0) img.style.zoom=zoom+'%'; } </script> </body> </html>