firefox userChrome.js greasemonkeyスレ 6
■ このスレッドは過去ログ倉庫に格納されています
0385名無しさん@お腹いっぱい。
2008/11/09(日) 19:19:09ID:6RCOsR0w0拡張機能スレでお題出してくれた人が見てくれるかどうか
var ucjs_hide_cursor = { _delay: 1000,
handleEvent: function(event) {
if(this._timeout)clearTimeout(this._timeout);
var doc = event.originalTarget.ownerDocument;
if(doc instanceof XULDocument)return window.setCursor("auto");
var body = doc.getElementsByTagName("body")[0];
if(this._stored_cursor) {
body.style.cursor = this._stored_cursor;
this._stored_cursor = null;
}
this._timeout = setTimeout(function(){
this._stored_cursor = body.style.cursor;
window.setCursor("none");
},this._delay,this);
}
}
window.addEventListener("mousemove", ucjs_hide_cursor, true);
■ このスレッドは過去ログ倉庫に格納されています