HTML のマーキー タグは、Web ページ内のテキストまたは画像上にスクロールを作成するために使用されます。これにより、左から右、右から左、上から下、下から上などのあらゆる種類のスクロールが可能になります。 HTML でのこのタグの構文は、これはテキストのスクロールです…< /marquee>。「marquee」タグは、必要なスクロールのプロパティを記述するために使用されます。他によく使用されるマーキー属性には、behaviour、hspace、scrollamount、scrolllay、truespeed、vspace などがあります。 構文: マーキーは、 を使用して使用できます。要素。構文は次のように記述できます。 This is scrolling of the text... HTML マーキータグの属性 以下は、<マーキー>でサポートされている属性です。タグ。 動作: 代替、スクロール、スライドなどの値の 1 つであるテキストをスクロールするアクション。 bgcolor: 背景色を与えます。 direction: テキストをスクロールする方向を左、右、上、下の値で指定します。デフォルトの方向値は左です。 高さ: マーキーの高さを定義します。 hspace: この属性は、マーキー要素の周囲に水平方向のスペースを提供します。 loop: テキストをスクロールできる回数を定義します。デフォルト値が -1 の場合、マーキーは継続的にループします。 scrollamount: 各間隔のスクロール量を指定します。スクロール量が定義されていない場合、デフォルト値は 6 です。 scrolllay: スクロール遅延をミリ秒単位で与えます。スクロール量が定義されていない場合、デフォルト値は 6 です。 truespeed: スクロール遅延値 60 を示すために使用されます。 vspace: この属性は、マーキー要素の周囲に垂直方向のスペースを提供します。 width: マーキーの幅を定義します。 HTML マーキー タグの例 以下で説明する HTML マーキー タグの例を次に示します。 例 #1 – マーキー左 このタイプのマーキーは、コンテンツを左側から移動するために使用できます。 コード: Left Marquee .mrq_class { text-align:center; } .marq_class1 { padding-top:25px; padding-bottom:25px; } .txt { font-size:30px; font-weight:italic; color:white; padding-bottom:10px; } Welcome to EDUCBA... EDUCBA is a leading global provider of skill based education addressing the needs 500,000+ members across 40+ Countries. 出力: 上記のコードを .html 拡張子を付けてファイルに保存します ブラウザで HTML ファイルを実行すると、以下の画像に示すような出力が得られます 例 #2 – 右マーキー このタイプのマーキーは、コンテンツを右側に移動するために使用できます。 コード: Right Marquee .mrq_class { text-align:center; } .marq_class1 { padding-top:25px; padding-bottom:25px; } .txt { font-size:30px; font-weight:italic; color:white; padding-bottom:10px; } Welcome to EDUCBA... EDUCBA is a leading global provider of skill based education addressing the needs 500,000+ members across 40+ Countries. 出力: 例 #3 – マーキーアップ このタイプのマーキーは、コンテンツを上側に移動するために使用できます。 コード: Up Marquee .mrq_class { text-align:center; } .marq_class1 { padding-top:25px; padding-bottom:25px; } .txt { font-size:30px; font-weight:italic; color:white; padding-bottom:10px; } Welcome to EDUCBA... EDUCBA is a leading global provider of skill based education addressing the needs 500,000+ members across 40+ Countries. 出力: 例 #4 – マーキーダウン このタイプのマーキーは、コンテンツを下側に移動するために使用できます。 コード: Down Marquee .mrq_class { text-align:center; } .marq_class1 { padding-top:25px; padding-bottom:25px; } .txt { font-size:30px; font-weight:italic; color:white; padding-bottom:10px; } Welcome to EDUCBA... EDUCBA is a leading global provider of skill based education addressing the needs 500,000+ members across 40+ Countries. 出力: 例 #5 – ネストされたマーキー このタイプのマーキーは、コンテンツをネストするために使用できます。 コード: Nested Marquee .mrq_class { text-align:center; } .marq_class1 { padding-top:25px; padding-bottom:25px; } .txt { font-size:30px; font-weight:italic; color:white; padding-bottom:10px; } Welcome to EDUCBA... EDUCBA is a leading global provider of skill based education addressing the needs 500,000+ members across 40+ Countries. 出力: 例 #6 – マーキーの速度比較 マーキー要素の速度は、scrolllay 属性を使用して指定できます。 コード: Nested Marquee .marq_class1 { padding-top:25px; padding-bottom:25px; } Welcome to EDUCBA...(normal speed) Welcome to EDUCBA...(This is very speed) Welcome to EDUCBA...(This is very slow) 出力: 例 #7 – マーケの背景色とスペース このタイプのマーキーは、マーキー要素の背景色とスペースを設定するために使用できます。 コード: Marquee Background and Space .mrq_class { text-align:center; } .marq_class1 { padding-top:25px; padding-bottom:25px; } EDUCBA is a leading global provider of skill based education addressing the needs 500,000+ members across 40+ Countries. 出力: 結論 これまで、マーキー タグを使用して Web ページ上にスクロール テキストを作成する方法を研究してきました。ユーザーは、Web サイト上で水平方向または垂直方向にスクロールするテキストを簡単に作成できます。この要素は非推奨となっており、使用されなくなります。スクロール効果を実現するには、CSS または JavaScript が使用されます。