web-dev-qa-db-ja.com

HTML <Marquee>タグの速度を変更することはできますか?

1人のマーキーが画面を離れると、短い時間のギャップの後、別の側から入ります。この時間を短縮する方法はありますか?

35
aaaaa
<Marquee behavior=scroll direction="left" scrollamount="5">Your message here</Marquee>

scrollamountはテキストの速度を制御します。値が大きいほどスクロール速度が高くなります

39
Ashish Anand

scrollamount属性を使用してスクロール速度を制御できます。

例:

<Marquee scrollamount="30">scrolling fast</Marquee>
<Marquee scrollamount="2">scrolling slow</Marquee>

注:最小数を指定すると、スクロール速度が低下します

25
sakthideveloper

それを制御する属性は特にありません。とにかくマーキーは信頼性の高いタグではありません。 jQueryと.animate()関数の使用を検討することもできます。その道を追求することに興味があり、そのためのコードが必要な場合は、私に知らせてください。

7
James Thompson

この属性はミリ秒単位で時間がかかります。

遅延:100ミリ秒

<Marquee scrolldelay="100">Scrolling text</Marquee>

遅延:400ミリ秒

<Marquee scrolldelay="400">Scrolling text</Marquee>
6
Abu Sufian

scrollamount属性を使用して、マーキータグの速度を変更できます。

デフォルトの速度である整数値6を受け入れます。したがって、6未満の値はマーキー効果を遅くします。

例:

<Marquee scrollamount=4>Scrolling text</Marquee>

続きを読む: http://code2care.org/pages/Marquee-tag-scrollamount/

http://www.htmlcodetutorial.com/_Marquee_SCROLLAMOUNT.html

追伸:Marqueeの使用は避けてください!

4
AcousticHead

マーキーテキストの速度を上げるには、次のコードに次のように追加するだけです。

<Marquee scrollamount="Integer number">scrolling fast</Marquee>
4
Nadeem Bhat

scrolldelay="number"

3
John Giotta

Scrolldelayを追加して速度を変更できます

<Marquee style="font-family: lato; color: #FFFFFF" bgcolor="#00224f" scrolldelay="400">Now the Speed is Delay to 400 Milliseconds</Marquee>
1
Uday Kumar

テキストのスクロール速度を上げるには、属性を使用します

scrollamount
OR
scrolldelay

'Marquee'タグ内。テキストの移動に必要な速度を表す整数値を配置します

1
sad
         <body>
         <Marquee direction="left" behavior=scroll scrollamount="2">This is basic example of Marquee</Marquee>
         <Marquee direction="up">The direction of text will be from bottom to top.</Marquee>
         </body>

scrollamountを使用して速度を制御します。

0
Rojith Thomas