Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

window.onresize

概要

window のリサイズイベントに対応するイベントハンドラ。

構文

window.onresize = funcRef;
  • funcRef: 関数への参照

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>onresize のテスト</title>
<script>
function resize() {
 alert("resize event detected!");
}

window.onresize = resize;
</script>
</head>

<body>

<p>ブラウザをリサイズしてみてください。</p>

</body>
</html>

ブラウザウィンドウのサイズが変更された時に resize イベントが発生します。

仕様

どの仕様書にも含まれていません。

ドキュメントのタグと貢献者

タグ: 
 このページの貢献者: teoli, khalid32, ethertank
 最終更新者: khalid32,