提交 03614c01 编写于 作者: P pah100

fix wheel scroll --> zoom in or out.

上级 b07640ee
...@@ -66,7 +66,10 @@ define(function (require) { ...@@ -66,7 +66,10 @@ define(function (require) {
function mousewheel(e) { function mousewheel(e) {
eventTool.stop(e.event); eventTool.stop(e.event);
var zoomDelta = e.wheelDelta < 0 ? 1.1 : 1 / 1.1; // Convenience:
// Mac and VM Windows on Mac: scroll up: zoom out.
// Windows: scroll up: zoom in.
var zoomDelta = e.wheelDelta > 0 ? 1.1 : 1 / 1.1;
zoom.call(this, e, zoomDelta, e.offsetX, e.offsetY); zoom.call(this, e, zoomDelta, e.offsetX, e.offsetY);
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册