aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/window/scrollbars
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
commit33058f2b292b3a581333bdfb21b8f671898c5060 (patch)
tree51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/web/api/window/scrollbars
parent8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff)
downloadtranslated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip
initial commit
Diffstat (limited to 'files/ja/web/api/window/scrollbars')
-rw-r--r--files/ja/web/api/window/scrollbars/index.html70
1 files changed, 70 insertions, 0 deletions
diff --git a/files/ja/web/api/window/scrollbars/index.html b/files/ja/web/api/window/scrollbars/index.html
new file mode 100644
index 0000000000..3ad2ce63e5
--- /dev/null
+++ b/files/ja/web/api/window/scrollbars/index.html
@@ -0,0 +1,70 @@
+---
+title: window.scrollbars
+slug: Web/API/Window/scrollbars
+tags:
+ - Gecko
+ - HTML DOM
+ - Window
+translation_of: Web/API/Window/scrollbars
+---
+<div>{{ApiRef}}</div>
+
+<h2 id="概要">概要</h2>
+
+<p>scrollbars オブジェクトを返します。このバーの表示は、ウィンドウ内でトグル(表示/非表示の状態を切り替える)ことができます。</p>
+
+<h2 id="構文">構文</h2>
+
+<pre class="syntaxbox"><em>objRef</em> = window.scrollbars
+</pre>
+
+<h2 id="例">例</h2>
+
+<p>以下の完全な HTML の例は、様々な "bar" オブジェクトの visible プロパティで利用可能な方法を示しています。</p>
+
+<pre class="brush:html">&lt;DOCTYPE html&gt;
+&lt;html lang="ja"&gt;
+&lt;head&gt;
+&lt;meta charset="UTF-8" /&gt;
+&lt;title&gt;様々な DOM テスト&lt;/title&gt;
+
+&lt;script&gt;
+// 存在するウィンドウのバーの状態を変更します
+netscape.security.PrivilegeManager.enablePrivilege("UniversalBrowserWrite");
+window.scrollbars.visible = !window.scrollbars.visible;
+&lt;/script&gt;
+
+&lt;/head&gt;
+&lt;body&gt;
+ &lt;p&gt;様々な DOM テスト&lt;/p&gt;
+&lt;/body&gt;
+&lt;/html&gt;
+</pre>
+
+<h2 id="仕様">仕様</h2>
+
+<table class="standard-table">
+ <tbody>
+ <tr>
+ <th scope="col">仕様</th>
+ <th scope="col">状態</th>
+ <th scope="col">コメント</th>
+ </tr>
+ <tr>
+ <td>{{SpecName('HTML WHATWG', 'browsers.html#dom-window-scrollbars', 'Window.scrollbars')}}</td>
+ <td>{{Spec2('HTML WHATWG')}}</td>
+ <td></td>
+ </tr>
+ <tr>
+ <td>{{SpecName('HTML5 W3C', 'browsers.html#dom-window-scrollbars', 'Window.scrollbars')}}</td>
+ <td>{{Spec2('HTML5 W3C')}}</td>
+ <td></td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="See_also" name="See_also">関連情報</h2>
+
+<ul>
+ <li><a href="/ja/docs/DOM/window.locationbar">window.locationbar</a> 、 <a href="/ja/docs/DOM/window.menubar">window.menubar</a> 、 <a href="/ja/docs/DOM/window.personalbar">window.personalbar</a> 、 <a href="/ja/docs/DOM/window.statusbar">window.statusbar</a> 、 <a href="/ja/docs/DOM/window.toolbar">window.toolbar</a></li>
+</ul>