JavaScript Reference/Javascript Properties/behavior

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

"behavior" Example

    
<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>



"behavior" is applied to

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



"behavior" Possible Values

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).



"behavior" Syntax and Note

Note:
Read and write property. 
Controls the text scrolling in <marquee> element. 
    
Syntax:
    
document.all.marqueeID.behavior = value