JavaScript Reference/Javascript Properties/behavior

Материал из Web эксперт
Перейти к: навигация, поиск

"behavior" Example

   <source lang="javascript">
   

<html> <head> <script language="JavaScript">

   function function1(){
       document.all.myMarquee.behavior = "alternate";
   }
   function function2(){
       document.all.myMarquee.behavior = "slide";
   }

</script> </head> <body> <marquee id="myMarquee">marquee</marquee> <input type="button" value="behavior = alternate" onClick="function1();"> <input type="button" value="behavior = slide" onClick="function2();"> </body></html>


     </source>
   
  


"behavior" is applied to

   <source lang="javascript">

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

     </source>
   
  


"behavior" Possible Values

   <source lang="javascript">

Possible Values scroll the default; text scrolls off the end and starts over), alternate text scrolls back and forth slide the text scrolls once to the end and stops).


     </source>
   
  


"behavior" Syntax and Note

   <source lang="javascript">

Note: Read and write property. Controls the text scrolling in <marquee> element.

Syntax:

document.all.marqueeID.behavior = value


     </source>