blob: d15adf20c31c0a2a120abbf95e8198743fe24582 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
---
title: window.onresize
slug: Web/API/GlobalEventHandlers/onresize
tags:
- DOM
- Gecko
- Property
- Window
translation_of: Web/API/GlobalEventHandlers/onresize
original_slug: Web/API/Window/onresize
---
<p>{{ ApiRef() }}</p>
<p><code><strong>GlobalEventHandlers.onresize</strong></code> プロパティは、{{event("resize")}} イベントを受信するとトリガーされる {{domxref("EventHandler")}} を含みます。</p>
<h2 id="Syntax" name="Syntax">構文</h2>
<pre class="eval">window.onresize = <em>funcRef</em>;
</pre>
<h3 id="Parameters" name="Parameters">引数</h3>
<ul>
<li><code>funcRef</code>: 関数への参照</li>
</ul>
<h2 id="Example" name="Example">例</h2>
<pre>window.onresize = doFunc;
</pre>
<pre><html>
<head>
<title>onresize test</title>
</head>
<body>
<p>Resize the browser window to fire the resize event.</p>
<p>Window height: <span id="height"></span></p>
<p>Window width: <span id="width"></span></p>
<script type="text/javascript">
var heightOutput = document.querySelector('#height');
var widthOutput = document.querySelector('#width');
function resize() {
heightOutput.textContent = window.innerHeight;
widthOutput.textContent = window.innerWidth;
}
window.onresize = resize;
</script>
</body>
</html>
</pre>
<h2 id="Notes" name="Notes">注記</h2>
<p>ブラウザウィンドウのサイズが変更された後に <code>resize</code> イベントが発生します。</p>
<h2 id="Specification" name="Specification">仕様</h2>
<table class="spectable standard-table">
<tbody>
<tr>
<th scope="col">使用</th>
<th scope="col">ステータス</th>
<th scope="col">コメント</th>
</tr>
<tr>
<td>{{SpecName('HTML WHATWG','webappapis.html#handler-onresize','onresize')}}</td>
<td>{{Spec2('HTML WHATWG')}}</td>
<td> </td>
</tr>
</tbody>
</table>
|