Project1
标题:
让窗口的光标停止闪烁,怎么修改?
[打印本页]
作者:
king
时间:
2016-4-26 10:05
标题:
让窗口的光标停止闪烁,怎么修改?
默认系统里面的光标会自动闪烁,
停止这种闪烁的效果,
请问要如何改? 谢谢
作者:
汪汪
时间:
2016-4-27 20:58
Window.prototype._updateCursor = function() {
var blinkCount = this._animationCount % 40;
var cursorOpacity = this.contentsOpacity;
/* if (this.active) {
if (blinkCount < 20) {
cursorOpacity -= blinkCount * 8;
} else {
cursorOpacity -= (40 - blinkCount) * 8;
}
}*/
this._windowCursorSprite.alpha = cursorOpacity / 255;
this._windowCursorSprite.visible = this.isOpen();
};
复制代码
欢迎光临 Project1 (https://rpg.blue/)
Powered by Discuz! X3.1