문제

well this is my problem..

<html>
  <body>
    <marquee id="introtext" scrollamount="150" behavior="slide" direction="left">
      <p>
         this is the sliding text.
      </p>
    </marquee>
  </body>
</html>

What chrome does is just weard. it repeats the "marquee" action after 4 seconds.

what can i do to prevent this? or just fully disable this marquee but still keep this id , because this is used for other css effects?

sincerely,

santino

도움이 되었습니까?

해결책

try loop="0" :

<marquee id="introtext" scrollamount="150" behavior="slide" direction="left" loop="0">

다른 팁

what can i do to prevent this? or just fully disable this marquee but still keep this id , because this is used for other css effects?

From <marquee id="introtext" scrollamount="150" behavior="slide" direction="left">

To <div id="introtext">

If you want just to remain with ID of block. But that deletes marquee.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top