JavaScript Reference/Javascript Properties/direction
Содержание
"direction" Example
<html>
<body>
<script language="JavaScript">
function function1(){
document.all.myMarquee.direction = "up";
}
function function2(){
document.all.myMarquee.direction = "left";
}
function function3(){
document.all.myMarquee.direction = "right";
}
function function4(){
document.all.myMarquee.direction = "down";
}
</script>
<marquee id="myMarquee" bgcolor="cyan">SCROLLING MARQUEE</marquee>
<button onclick="function1();">Up</button>
<button onclick="function2();">Left</button>
<button onclick="function3();">Right</button>
<button onclick="function4();">Down</button>
</body>
</html>
"direction" is applied to
+----------------+--------------------------------------------------------------+
| Applied_To |<marquee> |
+----------------+--------------------------------------------------------------+
"direction" Possible Values
Possible Values
left the default
right
down
up.
"direction" Syntax and Note
Note:
Read and write property.
Sets the scrolling direction in <marquee>.
Syntax:
document.all.marqueeID.direction = value