Writing /volume1/Web/Public/dokuwiki/data/log/deprecated/2024-11-15.log failed

差分

このページの2つのバージョン間の差分を表示します。

この比較画面へのリンク

両方とも前のリビジョン前のリビジョン
次のリビジョン
前のリビジョン
study:javascript:event:mouse [2008/04/23 00:46] bananastudy:javascript:event:mouse [2008/04/23 04:13] (現在) banana
行 37: 行 37:
 ちなみに、**%%getWinXOffset()%%**,**%%getWinYOffset()%%**はWindowのoffsetのx座標、y座標を計算して返すメソッドである。\\ ちなみに、**%%getWinXOffset()%%**,**%%getWinYOffset()%%**はWindowのoffsetのx座標、y座標を計算して返すメソッドである。\\
  
 +{{keywords>popup image}}
  
 +
 +===== Get the offset of window =====
 +xOffsetの取得
 +<code javascript>
 +function getWinXOffset(){
 +  if(window.scrollX) return window.scrollX; // Moziila
 +  if(window.pageXOffset) return window.pageXOffset; // Opera, NN4
 +  if(document.documentElement && document.documentElement.scrollLeft){ // 以下 IE
 +    return document.documentElement.scrollLeft;
 +  }else if(document.body && document.body.scrollLeft){
 +    return document.body.scrollLeft;
 +  }
 +  return 0;
 +}
 +</code>
 +yOffsetの取得
 +<code javascript>
 +function getWinYOffset(){
 +  if(window.scrollY) return window.scrollY; // Mozilla
 +  if(window.pageYOffset) return window.pageYOffset; // Opera, NN4
 +  if(document.documentElement && document.documentElement.scrollTop){ // 以下 IE
 +     return document.documentElement.scrollTop;          //Strict Mode
 +  }else if(document.body && document.body.scrollTop){
 +     return document.body.scrollTop; //Quirks Mode
 +  }
 +  return 0;
 +}
 +</code>
  

QR Code
QR Code study:javascript:event:mouse (generated for current page)