1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145
|
<!DOCTYPE html>
<html>
<!--
Copyright The Closure Library Authors. All Rights Reserved.
Use of this source code is governed by the Apache License, Version 2.0.
See the COPYING file for details.
-->
<head>
<title>goog.events.WheelHandler</title>
<link rel="stylesheet" href="../css/checkbox.css">
<style>
#out {
background-color: #eee;
width: 500px;
height: 500px;
position: relative;
display: inline-block;
}
#h-line, #v-line {
position: absolute;
background: black;
}
#h-line {
width: 20px;
height: 1px;
}
#v-line {
width: 1px;
height: 20px;
}
#status {
position: absolute;
bottom: 0;
right: 0;
font: 70% sans-serif;
}
#debug {
font-family: monospace;
white-space: pre;
display: inline-block;
}
</style>
<script src="../base.js"></script>
<script>
goog.require('goog.events');
goog.require('goog.events.WheelHandler');
</script>
</head>
<body>
<h1>goog.events.WheelHandler</h1>
<p>Use your mousewheel on the gray box below to move the cross hair.
<div id=out>
<div id=h-line></div>
<div id=v-line></div>
<div id=status></div>
</div>
<div id=debug>
</div>
<script>
var WheelHandler = goog.events.WheelHandler;
var WheelEvent = goog.events.WheelEvent;
var WHEEL = WheelEvent.EventType.WHEEL;
function $(id) {
return document.getElementById(id)
}
var x = 250, y = 250;
var out = $('out');
var hLine= $('h-line');
var vLine = $('v-line');
var statusLine = $('status');
var debug = $('debug');
var availWidth = out.clientWidth - vLine.offsetWidth;
var availHeight = out.clientHeight - hLine.offsetHeight;
function handleWheel(e) {
x += e.pixelDeltaX;
x = Math.max(0, Math.min(availWidth, x));
y += e.pixelDeltaY;
y = Math.max(0, Math.min(availHeight, y));
updateLines();
e.preventDefault();
var deltaModeString = 'unknown';
var DeltaMode = WheelEvent.DeltaMode;
switch (e.deltaMode) {
case DeltaMode.PIXEL:
deltaModeString = 'DeltaMode.PIXEL';
break;
case DeltaMode.LINE:
deltaModeString = 'DeltaMode.LINE';
break;
case DeltaMode.PAGE:
deltaModeString = 'DeltaMode.PAGE';
break;
}
var debugObject = {
type: e.type,
deltaMode: deltaModeString,
deltaX: e.deltaX,
deltaY: e.deltaY,
deltaZ: e.deltaZ,
pixelDeltaX: e.pixelDeltaX,
pixelDeltaY: e.pixelDeltaY,
pixelDeltaZ: e.pixelDeltaZ,
};
debug.innerText = JSON.stringify(debugObject, undefined, 4);
}
function updateLines() {
vLine.style.left = x + 'px';
hLine.style.left = x - hLine.offsetWidth / 2 + 'px';
hLine.style.top = y + 'px';
vLine.style.top = y - vLine.offsetHeight / 2 + 'px';
statusLine.innerText = x + ', ' + y;
}
updateLines();
var mwh = new WheelHandler(out);
goog.events.listen(mwh, WHEEL, handleWheel);
goog.events.listen(window, 'unload', function(e) {
goog.events.unlisten(mwh, WHEEL, handleWheel);
});
</script>
</body>
</html>
|