Marquee in JavaScript
http://dynapi.sourceforge.net/
GNU LESSER GENERAL PUBLIC LICENSE
Version 2.1, February 1999
<html>
<head>
<title>DynAPI Examples - Marquee</title>
<script language="JavaScript" src="./dynapisrc/dynapi.js"></script>
<script language="Javascript">
dynapi.library.setPath('./dynapisrc/');
dynapi.library.include('dynapi.api');
dynapi.library.include('Marquee');
</script>
<script language="Javascript">
var html = 'Hello World<br><font face="arial" size="6"><b>DynAPI Marquee </b></font></h2>';
var x = new Marquee(html,100,100,250,60);
x.setLocalStyleAttribute('backColor','yellow');
x.start()
dynapi.document.addChild(x);
</script>
</head>
<body>
<script>
dynapi.document.insertAllChildren();
</script>
</body>
</html>
dynapi.zip( 791 k)Related examples in the same category