Project1

标题: 让窗口的光标停止闪烁,怎么修改? [打印本页]

作者: king    时间: 2016-4-26 10:05
标题: 让窗口的光标停止闪烁,怎么修改?
默认系统里面的光标会自动闪烁,

停止这种闪烁的效果,

请问要如何改? 谢谢
作者: 汪汪    时间: 2016-4-27 20:58
  1. Window.prototype._updateCursor = function() {
  2.     var blinkCount = this._animationCount % 40;
  3.     var cursorOpacity = this.contentsOpacity;
  4.   /*  if (this.active) {
  5.         if (blinkCount < 20) {
  6.             cursorOpacity -= blinkCount * 8;
  7.         } else {
  8.             cursorOpacity -= (40 - blinkCount) * 8;
  9.         }
  10.     }*/
  11.     this._windowCursorSprite.alpha = cursorOpacity / 255;
  12.     this._windowCursorSprite.visible = this.isOpen();
  13. };
复制代码





欢迎光临 Project1 (https://rpg.blue/) Powered by Discuz! X3.1