1. ホーム
  2. Web制作
  3. HTML/Xhtml

HTMLマーキー文字のスニペットスクロール

2022-01-30 04:08:38
の以下の属性があります。
方向性
アクティブなキャプションのスクロール方向を設定します。
コードは以下の通りです。
<marquee direction="down"> アクティブキャプションのスクロール方向を設定しますdirection="down": down</marquee>
<marquee direction="left">Set the scrolling direction of active captiondirection="left": left</marquee>
<marquee direction="right">Set the scroll direction of active captiondirection="right": to the right</marquee>
<marquee direction="up">Set the scroll direction of active captiondirection="up": up</marquee>
動作
スクロール方法を設定します。
alternateを指定します。両端を前後にスクロールすることを示す。
をスクロールします。端から端までスクロールが繰り返されることを示す。
スライド:端から端までスクロールし、繰り返さないことを意味します。
コードは以下の通りです。
<marquee behavior="alternate">alternate: 両端を前後にスクロールすることを示す </marquee>
<marquee behavior="scroll">scroll: 端から端までスクロールを繰り返すことを示す </marquee>
<marquee behavior="slide">slide: 端から端までスクロールすることを示し、繰り返さない </marquee>
スクロール量
アクティブなキャプションのスクロール速度をピクセル単位で設定します。
コードは以下の通りです。
<marquee scrollamount="10" >scrollamount="10" </marquee>
<marquee scrollamount="20" >scrollamount="20" </marquee>
<marquee scrollamount="30" >scrollamount="30" </marquee>
スクロールディレイ
アクティブなキャプションのスクロール間の遅延時間をミリ秒単位で設定します。
値を大きくすると、1ステップにつき1ポーズの効果があります
コードは以下の通りです。
<marquee scrolldelay="10" >scrolldelay="10" </marquee>
<marquee scrolldelay="100" > scrolldelay="100" </marquee>
<marquee scrolldelay="1000"> scrolldelay="1000" </marquee>