Lines Matching +refs:y +refs:e

97 … this.imgsize.y = (typeof options.imageHeight == 'undefined' ? -1 : parseInt(options.imageHeight));
108 this.y = 0;
274 this.y = Math.floor(this.scaleSize.y * 0.5 - this.height * 0.5) * -1;
311 var inv = Math.max(this.imgsize.x, this.imgsize.y) /
314 this.scaleSize.y = this.imgsize.y / inv;
374 tile.posy = (tile.yIndex * this.tileSize) + this.y + motion.y;
408 tile.posy = (tile.yIndex * this.tileSize) + this.y + motion.y;
420 tile.posy = (tile.yIndex * this.tileSize) + this.y + motion.y;
449 this.y += motion.y;
471 var low = tile.yIndex >= Math.ceil(this.scaleSize.y / this.tileSize);
570 new PanoJS.ZoomEvent(this.x, this.y, this.zoomLevel, percentage)
587 this.y + (coords.y - this.mark.y)
614 'y': (coords.y - this.y) property
619 'y': Math.floor(before.y * Math.pow(2, direction)) property
623 this.y = coords.y - after.y;
666 this.positionTiles({ 'x': (coords.x - this.mark.x), 'y': (coords.y - this.mark.y) }); property
681 coords.y += this.y;
686 'y': Math.floor((this.height / 2) - coords.y) property
689 if (motion.x == 0 && motion.y == 0) {
695 var x, y;
699 y = this.slideAcceleration;
702 var slope = Math.abs(target.y / target.x);
704 y = Math.round(slope * x);
709 'y': Math.min(y, Math.abs(target.y)) * (target.y < 0 ? -1 : 1) property
722 'y': coords.y + motion.y property
768 this.y += (after.y - before.y);
781 resolveCoordinates: function (e) { argument
783 …'x': (e.pageX || (e.clientX + (document.documentElement.scrollLeft || document.body.scrollLeft))) …
784 …'y': (e.pageY || (e.clientY + (document.documentElement.scrollTop || document.body.scrollTop))) - …
797 'y': (coords.y - this.mark.y) property
801 this.y += motion.y;
823 coords.y < this.y ||
825 coords.y > (this.tileSize * Math.pow(2, this.zoomLevel) + this.y));
853 PanoJS.mousePressedHandler = function (e) { argument
854 e = e ? e : window.event;
856 if (e.button < 2) {
858 var coords = self.resolveCoordinates(e);
860 e.cancelBubble = true;
871 PanoJS.mouseReleasedHandler = function (e) { argument
872 e = e ? e : window.event;
876 self.release(self.resolveCoordinates(e));
880 PanoJS.mouseMovedHandler = function (e) { argument
881 e = e ? e : window.event;
885 self.moveViewer(self.resolveCoordinates(e));
889 PanoJS.zoomInHandler = function (e) { argument
890 e = e ? e : window.event;
896 PanoJS.zoomOutHandler = function (e) { argument
897 e = e ? e : window.event;
903 PanoJS.maximizeHandler = function (e) { argument
936 PanoJS.doubleClickHandler = function (e) { argument
937 e = e ? e : window.event;
939 coords = self.resolveCoordinates(e);
946 PanoJS.keyboardMoveHandler = function (e) { argument
947 e = e ? e : window.event;
950 if (e.keyCode == 38)
952 if (e.keyCode == 39)
954 if (e.keyCode == 40)
956 if (e.keyCode == 37)
961 PanoJS.keyboardZoomHandler = function (e) { argument
962 e = e ? e : window.event;
965 if (e.keyCode == 109)
967 if (e.keyCode == 107)
972 PanoJS.MoveEvent = function (x, y) { argument
974 this.y = y;
977 PanoJS.ZoomEvent = function (x, y, level, percentage) { argument
979 this.y = y;