diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
commit | 33058f2b292b3a581333bdfb21b8f671898c5060 (patch) | |
tree | 51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/web/api/svgevent/index.html | |
parent | 8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff) | |
download | translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2 translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip |
initial commit
Diffstat (limited to 'files/ja/web/api/svgevent/index.html')
-rw-r--r-- | files/ja/web/api/svgevent/index.html | 81 |
1 files changed, 81 insertions, 0 deletions
diff --git a/files/ja/web/api/svgevent/index.html b/files/ja/web/api/svgevent/index.html new file mode 100644 index 0000000000..0722b26d5c --- /dev/null +++ b/files/ja/web/api/svgevent/index.html @@ -0,0 +1,81 @@ +--- +title: SVGEvent +slug: Web/API/SVGEvent +tags: + - API + - Reference + - SVG +translation_of: Web/API/SVGEvent +--- +<div>{{APIRef("SVG")}}</div> + +<p>このセクションには、Scalable Vector Graphics (SVG) イベントリファレンスのドキュメントが含まれています。</p> + +<h2 id="このセクションにおいて">このセクションにおいて</h2> + +<table> + <tbody> + <tr> + <th>項目</th> + <th>説明</th> + </tr> + <tr> + <td> + <p><strong>onabort</strong></p> + </td> + <td> + <p>要素が完全に読み込まれる前にページの読み込みが停止したときに発生します。</p> + </td> + </tr> + <tr> + <td> + <p><strong>onerror</strong></p> + </td> + <td> + <p>要素が正しく読み込まれなかったり、スクリプトが正しく実行されなかったりすると発生します。</p> + </td> + </tr> + <tr> + <td> + <p><strong>onload</strong></p> + </td> + <td> + <p>ブラウザが要素とそのすべての子孫を完全に解析したときに発生します。</p> + </td> + </tr> + <tr> + <td> + <p><strong>onresize</strong></p> + </td> + <td> + <p>ドキュメントビューのサイズが変更されているときに発生します。</p> + </td> + </tr> + <tr> + <td> + <p><strong>onscroll</strong></p> + </td> + <td> + <p>ドキュメントビューがx軸、y軸、または両方の軸に沿って移動されているときに発生します。</p> + </td> + </tr> + <tr> + <td> + <p><strong>onunload</strong></p> + </td> + <td> + <p>ドキュメントがウィンドウまたはフレームから削除されたときに発生します。</p> + </td> + </tr> + <tr> + <td> + <p><strong>onzoom</strong></p> + </td> + <td> + <p>ドキュメントのズームレベルまたは<strong>currentScale</strong>プロパティが変更されたときに発生します。</p> + </td> + </tr> + </tbody> +</table> + +<p> </p> |