summaryrefslogtreecommitdiffstats
path: root/usr/local/www/ticker.js
diff options
context:
space:
mode:
Diffstat (limited to 'usr/local/www/ticker.js')
-rwxr-xr-xusr/local/www/ticker.js54
1 files changed, 26 insertions, 28 deletions
diff --git a/usr/local/www/ticker.js b/usr/local/www/ticker.js
index bc4ddc6..77d3c63 100755
--- a/usr/local/www/ticker.js
+++ b/usr/local/www/ticker.js
@@ -1,52 +1,50 @@
<!--
-var width="310px"
+var width="310px";
-var speed=2
-var pauseit=1
+var speed=2;
+var pauseit=1;
-var divonclick=speed=(document.all)? speed : Math.max(1, speed-1)
-var copyspeed=speed
-var pausespeed=(pauseit==0)? copyspeed: 0
-var iedom=document.all||document.getElementById
+var divonclick=speed=(document.all)? speed : Math.max(1, speed-1);
+var copyspeed=speed;
+var pausespeed=(pauseit==0)? copyspeed: 0;
+var iedom=document.all||document.getElementById;
if (iedom)
- document.write('<span id="marquee-container">'+content+'</span>')
+ document.write('<span id="marquee-container">'+content+'</span>');
-var actualwidth=''
-var scroller
+var actualwidth='';
+var scroller;
if (window.addEventListener)
- window.addEventListener("load", populatescroller, false)
+ window.addEventListener("load", populatescroller, false);
else if (window.attachEvent)
- window.attachEvent("onload", populatescroller)
+ window.attachEvent("onload", populatescroller);
else if (document.all || document.getElementById)
- window.onload=populatescroller
+ window.onload=populatescroller;
function populatescroller(){
- scroller=document.getElementById? document.getElementById("scroller") : document.all.scroller
- scroller.style.left=parseInt(width)+8+"px"
-
- scroller.innerHTML=content
- actualwidth=document.all? document.getElementById("marquee-text").offsetWidth : document.getElementById("marquee-text").offsetWidth
- lefttime=setInterval("scrollmarquee()",20)
+ scroller=document.getElementById? document.getElementById("scroller") : document.all.scroller;
+ scroller.style.left=parseInt(width)+8+"px";
+ scroller.innerHTML=content;
+ document.getElementById("marquee-text");
+ actualwidth=document.all? document.getElementById("marquee-text").offsetWidth : document.getElementById("marquee-text").offsetWidth;
+ lefttime=setInterval("scrollmarquee()",20);
}
function scrollmarquee(){
if (parseInt(scroller.style.left)>(actualwidth*(-1)+8))
- scroller.style.left=parseInt(scroller.style.left)-copyspeed+"px"
+ scroller.style.left=parseInt(scroller.style.left)-copyspeed+"px";
else
- scroller.style.left=parseInt(width)+8+"px"
+ scroller.style.left=parseInt(width)+8+"px";
}
if (iedom){
- with (document){
- document.write('<table id="marquee"><td>')
- write('<div id="container" onMouseover="copyspeed=pausespeed" onMouseout="copyspeed=speed">')
- write('<div id="scroller"></div>')
- write('</div>')
- document.write('</td></table>')
- }
+ document.write('<table id="marquee"><td>');
+ document.write('<div id="container" onMouseover="copyspeed=pausespeed" onMouseout="copyspeed=speed">');
+ document.write('<div id="scroller"></div>');
+ document.write('</div>');
+ document.write('</td></table>');
}
//--> \ No newline at end of file
OpenPOWER on IntegriCloud