diff options
author | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2021-10-21 01:29:53 +0900 |
---|---|---|
committer | potappo <potappo@gmail.com> | 2021-10-23 16:34:10 +0900 |
commit | 0d7035078d90cc0dfb4bf680042ae5aadb31668a (patch) | |
tree | f87da6e19cf32031fb65c7718bfc9eda64145be3 | |
parent | 944adfbf3f3ecb10088c506b4cb415e0723b7516 (diff) | |
download | translated-content-0d7035078d90cc0dfb4bf680042ae5aadb31668a.tar.gz translated-content-0d7035078d90cc0dfb4bf680042ae5aadb31668a.tar.bz2 translated-content-0d7035078d90cc0dfb4bf680042ae5aadb31668a.zip |
Web/API/HTMLElement/inert を新規翻訳
- 2021/10/21 時点の英語版に基づく
-rw-r--r-- | files/ja/web/api/htmlelement/inert/index.md | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/files/ja/web/api/htmlelement/inert/index.md b/files/ja/web/api/htmlelement/inert/index.md new file mode 100644 index 0000000000..b4b7cdf0da --- /dev/null +++ b/files/ja/web/api/htmlelement/inert/index.md @@ -0,0 +1,58 @@ +--- +title: HTMLElement.inert +slug: Web/API/HTMLElement/inert +browser-compat: api.HTMLElement.inert +translation_of: Web/API/HTMLElement/inert +--- +{{ APIRef("HTML DOM") }} + +{{domxref("HTMLElement")}} の **`inert`** プロパティは論理値で、存在する場合は、フォーカスイベントや支援技術からのイベントを含む、要素に対するユーザーの入力イベントをブラウザーが「無視」するようにします。ブラウザーは、要素でのページ検索やテキスト選択も無視することができます。これは、モーダルのような UI を構築する際に、モーダルが表示されているときにフォーカスをモーダル内に「閉じ込める」場合に便利です。 + +## 構文 + + isInert = HTMLElement.inert; + + HTMLElement.inert = true | false; + +### 値 + +論理値で、その要素が不活性である場合は `true`、それ以外の場合はこの値は `false` になります。 + +<h2 id="Example">例</h3> + +### HTML + +```html +<div> + <label for="button1">ボタン 1</label> + <button id="button1">不活性ではありません</button> +</div> +<div inert> + <label for="button2">ボタン 2</label> + <button id="button2">不活性です</button> +</div> +``` + +### CSS + +```css +[inert] > * { + opacity: .5; +} +``` + +{{ EmbedLiveSample('Example', 560, 200) }} + +> **Note:** この属性は、それ自体では、ブラウザーに表示されるコンテンツは視覚的変化を与えません。上の例では、inert 属性を持つ要素の直系の子孫が半透明になるように CSS が適用されています。 + +## 仕様書 + +{{Specifications}} + +## ブラウザーの互換性 + +{{Compat}} + +## 関連情報 + +- [inert のポリフィル](https://github.com/WICG/inert) |