Marquee 'direction' Example : Marquee : HTML JAVASCRIPT DHTML TUTORIALS


JAVASCRIPT DHTML TUTORIALS » HTML » Marquee »

 

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

    
      
      



-

Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .

Follow Navioo On Twitter

JAVASCRIPT DHTML TUTORIALS

 Navioo HTML
» Marquee