aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/html/element/marquee
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/html/element/marquee
parent8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff)
downloadtranslated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip
initial commit
Diffstat (limited to 'files/ja/web/html/element/marquee')
-rw-r--r--files/ja/web/html/element/marquee/index.html121
1 files changed, 121 insertions, 0 deletions
diff --git a/files/ja/web/html/element/marquee/index.html b/files/ja/web/html/element/marquee/index.html
new file mode 100644
index 0000000000..622a57da0e
--- /dev/null
+++ b/files/ja/web/html/element/marquee/index.html
@@ -0,0 +1,121 @@
+---
+title: '<marquee>: マーキー要素 (廃止)'
+slug: Web/HTML/Element/marquee
+tags:
+ - Element
+ - HTML
+ - Obsolete
+ - Reference
+ - Web
+ - marquee
+translation_of: Web/HTML/Element/marquee
+---
+<div>{{Obsolete_header}}</div>
+
+<p>HTML の <code>&lt;marquee&gt;</code> 要素はテキストがスクロールする領域を挿入します。要素の属性を使用して、テキストがコンテンツ領域の端に達したときにどうするかを制御できます。</p>
+
+<table class="properties">
+ <tbody>
+ <tr>
+ <th scope="row">DOM インターフェイス</th>
+ <td>{{DOMxRef("HTMLMarqueeElement")}}</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Attributes" name="Attributes">属性</h2>
+
+<dl>
+ <dt>{{htmlattrdef("behavior")}}</dt>
+ <dd>marquee 要素内でのテキストのスクロール方法を <code>scroll</code>、 <code>slide</code>、<code>alternate</code> の内の何れかのキーワードで指定します。指定を省略した場合は、初期値の <code>scroll</code> が適用されます。</dd>
+ <dt>{{htmlattrdef("bgcolor")}}</dt>
+ <dd>背景色を、色名もしくは HEX カラーコードで指定します。</dd>
+ <dt>{{htmlattrdef("direction")}}</dt>
+ <dd>marquee 要素内でのテキストのスクロール方向を <code>left</code>、 <code>right</code>、 <code>up</code>、 <code>down</code> の内の何れかのキーワードで指定します。初期値は <code>left</code> です。</dd>
+ <dt>{{htmlattrdef("height")}}</dt>
+ <dd>スクロール範囲の高さを、ピクセル値かパーセント値で指定します。</dd>
+ <dt>{{htmlattrdef("hspace")}}</dt>
+ <dd>水平方向のマージンを指定します。</dd>
+ <dt>{{htmlattrdef("loop")}}</dt>
+ <dd>テキストのスクロール回数を指定します。初期値は −1 であり、これはスクロール回数を制限せず、恒久的にスクロールを続ける指定です。</dd>
+ <dt>{{htmlattrdef("scrollamount")}}</dt>
+ <dd>インターバル内での、テキストの移動ピクセル数を指定します。初期値は 6 です。</dd>
+ <dt>{{htmlattrdef("scrolldelay")}}</dt>
+ <dd>スクロール動作のインターバルをミリ秒で指定します。初期値は 85 です。<code>truespeed</code> 属性が指定されていない場合は 60 が最下限であり、これ以下の値は 60 として解釈されます。</dd>
+ <dt>{{htmlattrdef("truespeed")}}</dt>
+ <dd>デフォルトでは、<code>scrolldelay</code> で 60 を下回る値は無視します。<code>truespeed</code> を指定すると、それらの値が無視されません。</dd>
+ <dt>{{htmlattrdef("vspace")}}</dt>
+ <dd>垂直方向のマージンをピクセル値かパーセント値で指定します。</dd>
+ <dt>{{htmlattrdef("width")}}</dt>
+ <dd>スクロール範囲の幅をピクセル値かパーセント値で指定します。</dd>
+</dl>
+
+<h2 id="Event_handlers" name="Event_handlers">イベントハンドラー</h2>
+
+<dl>
+ <dt>{{htmlattrdef("onbounce")}}</dt>
+ <dd>スクロール範囲の終端に達した時に発火するイベントハンドラ。behavior 属性の値に <code>alternate</code> が指定されている場合のみ発火します。</dd>
+ <dt>{{htmlattrdef("onfinish")}}</dt>
+ <dd>loop 属性で指定された回数のループが終了した時に発火するイベントハンドラ。loop 属性に 1 以上の値が指定されている場合にのみ発火します。</dd>
+ <dt>{{htmlattrdef("onstart")}}</dt>
+ <dd>marquee がスクロールを開始した時に発火するイベントハンドラです。</dd>
+</dl>
+
+<h2 id="Methods" name="Methods">メソッド</h2>
+
+<dl>
+ <dt><code>start()</code></dt>
+ <dd>marquee のスクロールの開始</dd>
+ <dt><code>stop()</code></dt>
+ <dd>marquee のスクロールの停止</dd>
+</dl>
+
+<h2 id="Examples" name="Examples">例</h2>
+
+<pre class="brush: html notranslate">&lt;marquee&gt;This text will scroll from right to left&lt;/marquee&gt;
+
+&lt;marquee direction="up"&gt;This text will scroll from bottom to top&lt;/marquee&gt;
+
+&lt;marquee direction="down" width="250" height="200" behavior="alternate" style="border:solid"&gt;
+ &lt;marquee behavior="alternate"&gt;
+ This text will bounce
+ &lt;/marquee&gt;
+&lt;/marquee&gt;</pre>
+
+<p>{{EmbedLiveSample("Examples", 600, 450)}}</p>
+
+<h2 id="Specifications" name="Specifications">仕様書</h2>
+
+<table class="standard-table">
+ <thead>
+ <tr>
+ <th scope="col">仕様書</th>
+ <th scope="col">状態</th>
+ <th scope="col">備考</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td>{{SpecName('HTML WHATWG', 'obsolete.html#the-marquee-element-2', '&lt;marquee&gt;')}}</td>
+ <td>{{Spec2('HTML WHATWG')}}</td>
+ <td>CSS の方が望ましいため廃止しましたが、後方互換性のため期待する動作を定義しています。ただし CSS のマーキー機能の開発は<a href="https://www.w3.org/TR/css3-marquee/">放棄されました</a>。</td>
+ </tr>
+ <tr>
+ <td>{{SpecName('HTML5 W3C', 'obsolete.html#the-marquee-element-0', '&lt;marquee&gt;')}}</td>
+ <td>{{Spec2('HTML5 W3C')}}</td>
+ <td>CSS の方が望ましいため廃止しましたが、後方互換性のため期待する動作を定義しています。ただし CSS のマーキー機能の開発は<a href="https://www.w3.org/TR/css3-marquee/">放棄されました</a>。</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
+
+<p class="hidden">このページの互換性一覧表は構造化データから生成されています。データに協力していただけるのであれば、 <a class="external" href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> をチェックアウトしてプルリクエストを送信してください。</p>
+
+<p>{{Compat("html.elements.marquee")}}</p>
+
+<h2 id="See_also" name="See_also">関連情報</h2>
+
+<ul>
+ <li>{{DOMxRef("HTMLMarqueeElement")}}</li>
+</ul>