HTML CSS Reference/HTML Attributes Reference/scrolldelay

Материал из Web эксперт
Версия от 11:20, 26 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

"scrolldelay" Example

   <source lang="html4strict">
   

<HTML> <head><Title>Example For scrolldelay</Title></head> <BODY> <marquee behavior="slide"

        scrolldelay="150" 
        bgcolor="#EEEEEE">

This marquee has ascrolldelay value of 150. </marquee> </BODY> </HTML>


     </source>
   
  


scrolldelay is applied to

   <source lang="html4strict">

+----------------+--------------------------------------------------------------+ | Applied_To |<marquee> | +----------------+--------------------------------------------------------------+

     </source>
   
  


"scrolldelay" Syntax and Note

   <source lang="html4strict">

Note:

This attribute determines the velocity for a <marquee> element. Its value specifies the delay in milliseconds (the default is 85) before the text is made to reappear each time.

Syntax:

<marquee scrolldelay="value"> . . . </marquee>


     </source>