📄 ddontop.js
字号:
/* Copyright (c) 2006 Yahoo! Inc. All rights reserved. */
/**
* @class a DragDrop implementation that moves the object as it is being dragged,
* and keeps the object being dragged on top. This is a subclass of DD rather
* than DragDrop, and inherits the implementation of most of the event listeners
* from that class.
*
* @extends YAHOO.util.DD
* @constructor
* @param {String} id the id of the linked element
* @param {String} sGroup the group of related DragDrop items
*/
YAHOO.example.DDOnTop = function(id, sGroup, config) {
if (id) {
this.init(id, sGroup, config);
this.logger = this.logger || YAHOO;
}
};
// YAHOO.example.DDOnTop.prototype = new YAHOO.util.DD();
YAHOO.extend(YAHOO.example.DDOnTop, YAHOO.util.DD);
/**
* The inital z-index of the element, stored so we can restore it later
*
* @type int
*/
YAHOO.example.DDOnTop.prototype.origZ = 0;
YAHOO.example.DDOnTop.prototype.startDrag = function(x, y) {
this.logger.log(this.id + " startDrag");
var style = this.getEl().style;
// store the original z-index
this.origZ = style.zIndex;
// The z-index needs to be set very high so the element will indeed be on top
style.zIndex = 999;
};
YAHOO.example.DDOnTop.prototype.endDrag = function(e) {
this.logger.log(this.id + " endDrag");
// restore the original z-index
this.getEl().style.zIndex = this.origZ;
};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -