1人のマーキーが画面を離れると、短い時間のギャップの後、別の側から入ります。この時間を短縮する方法はありますか?
<Marquee behavior=scroll direction="left" scrollamount="5">Your message here</Marquee>
scrollamountはテキストの速度を制御します。値が大きいほどスクロール速度が高くなります
scrollamount
属性を使用してスクロール速度を制御できます。
例:
<Marquee scrollamount="30">scrolling fast</Marquee>
<Marquee scrollamount="2">scrolling slow</Marquee>
注:最小数を指定すると、スクロール速度が低下します
それを制御する属性は特にありません。とにかくマーキーは信頼性の高いタグではありません。 jQueryと.animate()関数の使用を検討することもできます。その道を追求することに興味があり、そのためのコードが必要な場合は、私に知らせてください。
この属性はミリ秒単位で時間がかかります。
遅延:100ミリ秒
<Marquee scrolldelay="100">Scrolling text</Marquee>
遅延:400ミリ秒
<Marquee scrolldelay="400">Scrolling text</Marquee>
scrollamount属性を使用して、マーキータグの速度を変更できます。
デフォルトの速度である整数値6を受け入れます。したがって、6未満の値はマーキー効果を遅くします。
例:
<Marquee scrollamount=4>Scrolling text</Marquee>
続きを読む: http://code2care.org/pages/Marquee-tag-scrollamount/
http://www.htmlcodetutorial.com/_Marquee_SCROLLAMOUNT.html
追伸:Marqueeの使用は避けてください!
マーキーテキストの速度を上げるには、次のコードに次のように追加するだけです。
<Marquee scrollamount="Integer number">scrolling fast</Marquee>
scrolldelay="number"
Scrolldelayを追加して速度を変更できます
<Marquee style="font-family: lato; color: #FFFFFF" bgcolor="#00224f" scrolldelay="400">Now the Speed is Delay to 400 Milliseconds</Marquee>
テキストのスクロール速度を上げるには、属性を使用します
scrollamount
OR
scrolldelay
'Marquee'タグ内。テキストの移動に必要な速度を表す整数値を配置します
<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を使用して速度を制御します。