Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

JavaScript Forum


You are currently viewing our JavaScript Forum as a guest. Please register to participate.
Login



Reply
Need help with javascript marquee
Old 06-27-2007, 12:33 AM Need help with javascript marquee
Average Talker

Posts: 15
Name: Tim
Trades: 0
Hello,
I need some help. I have my javascript marquee working but only when i have <div class="dmarquee"> but i need it to be changed over to <div id="dmarquee"> . I know its somewhere in the javascript. Here is my code.
PHP Code:
var oMarquees = [], oMrunning,
oMInterv 20//interval between increments
oMStep 1//number of pixels to move between increments
oStopMAfter 0//how many seconds should marquees run (0 for no limit)
oResetMWhenStop false//set to true to allow linewrapping when stopping
oMDirection 'left'//'left' for LTR text, 'right' for RTL text
/*** Do not edit anything after here ***/
function doMStop() {
clearInterval(oMrunning);
for( var 
0oMarquees.lengthi++ ) {
oDiv oMarquees[i];
oDiv.mchild.style[oMDirection] = '0px';
if( 
oResetMWhenStop ) {
oDiv.mchild.style.cssText oDiv.mchild.style.cssText.replace(/;white-space:nowrap;/g,'');
oDiv.mchild.style.whiteSpace '';
oDiv.style.height '';
oDiv.style.overflow '';
oDiv.style.position '';
oDiv.mchild.style.position '';
oDiv.mchild.style.top '';
}
}
oMarquees = [];
}
function 
doDMarquee() {
if( 
oMarquees.length || !document.getElementsByTagName ) { return; }
var 
oDivs document.getElementsByTagName('div');
for( var 
0oDivoDivs.lengthi++ ) {
oDiv oDivs[i];
if( 
oDiv.idName && oDiv.idName.match(/\b#dmarquee\b/) ) {
if( !( oDiv oDiv.getElementsByTagName('div')[0] ) ) { continue; }
if( !( 
oDiv.mchild oDiv.getElementsByTagName('div')[0] ) ) { continue; }
oDiv.mchild.style.cssText += ';white-space:nowrap;';
oDiv.mchild.style.whiteSpace 'nowrap';
oDiv.style.height oDiv.offsetHeight 'px';
oDiv.style.overflow 'hidden';
oDiv.style.position 'relative';
oDiv.mchild.style.position 'absolute';
oDiv.mchild.style.top '0px';
oDiv.mchild.style[oMDirection] = oDiv.offsetWidth 'px';
oMarquees[oMarquees.length] = oDiv;
+= 2;
}
}
oMrunning setInterval('aniMarquee()',oMInterv);
if( 
oStopMAfter ) { setTimeout('doMStop()',oStopMAfter*1000); }
}
function 
aniMarquee() {
var 
oDivoPos;
for( var 
0oMarquees.lengthi++ ) {
oDiv oMarquees[i].mchild;
oPos parseInt(oDiv.style[oMDirection]);
if( 
oPos <= -oDiv.offsetWidth ) {
oDiv.style[oMDirection] = oMarquees[i].offsetWidth 'px';
} else {
oDiv.style[oMDirection] = ( oPos oMStep ) + 'px';
}
}
}
if( 
window.addEventListener ) {
window.addEventListener('load',doDMarquee,false);
} else if( 
document.addEventListener ) {
document.addEventListener('load',doDMarquee,false);
} else if( 
window.attachEvent ) {
window.attachEvent('onload',doDMarquee);

If someone could tell me what i need to change in the script to make it work with div id not class.

Thanks,
Tim!
opticaltim is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 06-27-2007, 09:39 AM Re: Need help with javascript marquee
willcode4beer's Avatar
Super Moderator

Posts: 1,533
Name: Paul Davis
Location: San Francisco
Trades: 1
The posted code doesn't appear to work at all.
Is there something missing, or could you post a link to a test page?
__________________

Please login or register to view this content. Registration is FREE

willcode4beer is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to Need help with javascript marquee
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 1.33305 seconds with 12 queries