ailinalin
11-28-2007, 02:54 AM
hihi,
i've been trying to insert this javascript that i got from dynamicdrive to my webpage. how can i embed the script so that the slideshow only runs in a specific table in my webpage? :confused:
<script type="text/javascript">
/*
Vertical Pausing Slideshow - freely adapted from:
Cross browser Marquee II- © Dynamic Drive (www.dynamicdrive.com)
For full source code, 100's more DHTML scripts, and TOS, visit http://www.dynamicdrive.com
Modified by jscheuer1 for continuous content slideshow. Credit MUST stay intact for use
visit http://www.dynamicdrive.com/forums
*/
//Specify the marquee's width (in pixels)
var marqueewidth="240px"
//Specify the marquee's height
var marqueeheight="180px"
//Specify the marquee's marquee speed (larger is faster 1-10)
var marqueespeed=1
//Specify initial pause before scrolling in milliseconds
var initPause=1000
//Specify start with Full(1)or Empty(0) Marquee
var full=1
//Pause marquee onMousever (0=no 1=yes)?
var pauseit=1
//Specify images' border
imgBorder=1
var photos=new Array();
//Specify images, optional link, optional target:
photos[0]=['CE_slides/Slide1.JPG', 'staff_guide_for_CE_portal.ppt'] //Image w/link
photos[1]=['CE_slides/Slide2.jpg', 'staff_guide_for_CE_portal.ppt'] //Image w/link
photos[2]=['CE_slides/Slide3.jpg', 'staff_guide_for_CE_portal.ppt'] //Image w/link
photos[3]=['Slide4.jpg', 'staff_guide_for_CE_portal.ppt'] //Image w/link
photos[4]=['Slide5.jpg', 'staff_guide_for_CE_portal.ppt'] //Image w/link
photos[5]=['Slide6.jpg', 'staff_guide_for_CE_portal.ppt'] //Image w/link
photos[6]=['Slide7.jpg', 'staff_guide_for_CE_portal.ppt'] //Image w/link
photos[7]=['Slide8.jpg', 'staff_guide_for_CE_portal.ppt'] //Image w/link
photos[8]=['Slide9.jpg', 'staff_guide_for_CE_portal.ppt'] //Image w/link
photos[9]=['Slide10.jpg', 'staff_guide_for_CE_portal.ppt'] //Image w/link
photos[10]=['Slide11.jpg', 'staff_guide_for_CE_portal.ppt'] //Image w/link
photos[11]=['Slide12.jpg', 'staff_guide_for_CE_portal.ppt'] //Image w/link
photos[12]=['Slide13.jpg', 'staff_guide_for_CE_portal.ppt'] //Image w/link
photos[13]=['Slide14.jpg', 'staff_guide_for_CE_portal.ppt'] //Image w/link
photos[14]=['Slide15.jpg', 'staff_guide_for_CE_portal.ppt'] //Image w/link
photos[15]=['Slide16.jpg', 'staff_guide_for_CE_portal.ppt'] //Image w/link
photos[16]=['Slide17.jpg', 'staff_guide_for_CE_portal.ppt'] //Image w/link
photos[17]=['Slide18.jpg', 'staff_guide_for_CE_portal.ppt'] //Image w/link
photos[18]=['Slide19.jpg', 'staff_guide_for_CE_portal.ppt'] //Image w/link
photos[19]=['Slide20.jpg', 'staff_guide_for_CE_portal.ppt'] //Image w/link
photos[20]=['Slide21.jpg', 'staff_guide_for_CE_portal.ppt'] //Image w/link
photos[21]=['Slide22.jpg', 'staff_guide_for_CE_portal.ppt'] //Image w/link
photos[22]=['Slide23.jpg', 'staff_guide_for_CE_portal.ppt'] //Image w/link
photos[23]=['Slide24.jpg', 'staff_guide_for_CE_portal.ppt'] //Image w/link
photos[24]=['Slide25.jpg', 'staff_guide_for_CE_portal.ppt'] //Image w/link
photos[25]=['Slide26.jpg', 'staff_guide_for_CE_portal.ppt'] //Image w/link
photos[26]=['Slide27.jpg', 'staff_guide_for_CE_portal.ppt'] //Image w/link
photos[27]=['Slide28.jpg', 'staff_guide_for_CE_portal.ppt'] //Image w/link
photos[28]=['Slide29.jpg', 'staff_guide_for_CE_portal.ppt'] //Image w/link
photos[29]=['Slide30.jpg', 'staff_guide_for_CE_portal.ppt'] //Image w/link
photos[30]=['Slide31.jpg', 'staff_guide_for_CE_portal.ppt'] //Image w/link
photos[31]=['Slide32.jpg', 'staff_guide_for_CE_portal.ppt'] //Image w/link
////NO NEED TO EDIT BELOW THIS LINE////////////
var preload=new Array()
for (var i_tem = 0; i_tem < photos.length; i_tem++){
preload[i_tem]=new Image()
preload[i_tem].src=photos[i_tem][0]
}
var actualheight=marqueecontent=''
var copyspeed=marqueespeed
var pausespeed=(pauseit)? 0 : copyspeed
var iedom=document.all||document.getElementById
var cross_marquee, cross_marquee2, ns_marquee
for (var i_tem = 0; i_tem < photos.length; i_tem++){
if (typeof photos[i_tem][1]!=='undefined'){
marqueecontent+='<a href="'+photos[i_tem][1]+'"'
marqueecontent+=typeof photos[i_tem][2]!=='undefined'? ' target="'+photos[i_tem][2]+'"' : ''
marqueecontent+='>'
}
marqueecontent+='<img src="'+photos[i_tem][0]+'" border="'+imgBorder+'"><br>'
marqueecontent+=typeof photos[i_tem][1]!=='undefined'? '</a>' : ''
}
if (iedom||document.layers){
with (document){
if (iedom){
write('<div style="overflow:hidden;"><div style="position:relative;width:'+marqueewidth+';height:'+marqueeheight+';overflow:hidden" onMouseover="copyspeed=pausespeed" onMouseout="copyspeed=marqueespeed">')
write('<div id="iemarquee" style="position:absolute;left:0px;top:0px;width:100%;"><table align="center"><tr><td height="'+marqueeheight+'" align="center" valign="middle">Loading . . .</td></tr></table>')
write('</div><div id="iemarquee2" style="position:absolute;left:0px;top:0px;width:100%;">')
write('</div></div></div>')
}
else if (document.layers){
write('<ilayer width='+marqueewidth+' height='+marqueeheight+' name="ns_marquee">')
write('<layer name="ns_marquee2" width='+marqueewidth+' height='+marqueeheight+' left=0 top=0 onMouseover="copyspeed=pausespeed" onMouseout="copyspeed=marqueespeed"></layer>')
write('</ilayer>')
}
}
}
function populate(){
if (document.all)
for (var i_tem = 0; i_tem < preload.length; i_tem++)
if (typeof preload[i_tem].complete=='boolean'&&!preload[i_tem].complete){
setTimeout("populate();", 2000)
return;
}
if (iedom){
cross_marquee=document.getElementById? document.getElementById("iemarquee") : document.all.iemarquee
cross_marquee2=document.getElementById? document.getElementById("iemarquee2") : document.all.iemarquee2
cross_marquee.style.top=(full==1)? '0px' : parseInt(marqueeheight)+0+"px"
cross_marquee2.innerHTML=cross_marquee.innerHTML=marqueecontent
actualheight=cross_marquee.offsetHeight
cross_marquee2.style.top=(parseInt(cross_marquee.style.top)+actualheight+0)+"px" //indicates following #1
}
else if (document.layers){
ns_marquee=document.ns_marquee.document.ns_marquee2
ns_marquee.top=parseInt(marqueeheight)+8
ns_marquee.document.write(marqueecontent)
ns_marquee.document.close()
actualheight=ns_marquee.document.height
}
setTimeout('lefttime=setInterval("scrollmarquee()",20)',initPause)
}
window.onload=populate
function scrollmarquee(){
if (iedom){
if (parseInt(cross_marquee.style.top)<(actualheight*(-1)))
cross_marquee.style.top=(parseInt(cross_marquee2.style.top)+actualheight)+"px"
if (parseInt(cross_marquee2.style.top)<(actualheight*(-1)))
cross_marquee2.style.top=(parseInt(cross_marquee.style.top)+actualheight)+"px"
cross_marquee2.style.top=parseInt(cross_marquee2.style.top)-copyspeed+"px"
cross_marquee.style.top=parseInt(cross_marquee.style.top)-copyspeed+"px"
}
else if (document.layers){
if (ns_marquee.top>(actualheight*(-1)+8))
ns_marquee.top-=copyspeed
else
ns_marquee.top=parseInt(marqueeheight)+8
}
}
</script>
i've been trying to insert this javascript that i got from dynamicdrive to my webpage. how can i embed the script so that the slideshow only runs in a specific table in my webpage? :confused:
<script type="text/javascript">
/*
Vertical Pausing Slideshow - freely adapted from:
Cross browser Marquee II- © Dynamic Drive (www.dynamicdrive.com)
For full source code, 100's more DHTML scripts, and TOS, visit http://www.dynamicdrive.com
Modified by jscheuer1 for continuous content slideshow. Credit MUST stay intact for use
visit http://www.dynamicdrive.com/forums
*/
//Specify the marquee's width (in pixels)
var marqueewidth="240px"
//Specify the marquee's height
var marqueeheight="180px"
//Specify the marquee's marquee speed (larger is faster 1-10)
var marqueespeed=1
//Specify initial pause before scrolling in milliseconds
var initPause=1000
//Specify start with Full(1)or Empty(0) Marquee
var full=1
//Pause marquee onMousever (0=no 1=yes)?
var pauseit=1
//Specify images' border
imgBorder=1
var photos=new Array();
//Specify images, optional link, optional target:
photos[0]=['CE_slides/Slide1.JPG', 'staff_guide_for_CE_portal.ppt'] //Image w/link
photos[1]=['CE_slides/Slide2.jpg', 'staff_guide_for_CE_portal.ppt'] //Image w/link
photos[2]=['CE_slides/Slide3.jpg', 'staff_guide_for_CE_portal.ppt'] //Image w/link
photos[3]=['Slide4.jpg', 'staff_guide_for_CE_portal.ppt'] //Image w/link
photos[4]=['Slide5.jpg', 'staff_guide_for_CE_portal.ppt'] //Image w/link
photos[5]=['Slide6.jpg', 'staff_guide_for_CE_portal.ppt'] //Image w/link
photos[6]=['Slide7.jpg', 'staff_guide_for_CE_portal.ppt'] //Image w/link
photos[7]=['Slide8.jpg', 'staff_guide_for_CE_portal.ppt'] //Image w/link
photos[8]=['Slide9.jpg', 'staff_guide_for_CE_portal.ppt'] //Image w/link
photos[9]=['Slide10.jpg', 'staff_guide_for_CE_portal.ppt'] //Image w/link
photos[10]=['Slide11.jpg', 'staff_guide_for_CE_portal.ppt'] //Image w/link
photos[11]=['Slide12.jpg', 'staff_guide_for_CE_portal.ppt'] //Image w/link
photos[12]=['Slide13.jpg', 'staff_guide_for_CE_portal.ppt'] //Image w/link
photos[13]=['Slide14.jpg', 'staff_guide_for_CE_portal.ppt'] //Image w/link
photos[14]=['Slide15.jpg', 'staff_guide_for_CE_portal.ppt'] //Image w/link
photos[15]=['Slide16.jpg', 'staff_guide_for_CE_portal.ppt'] //Image w/link
photos[16]=['Slide17.jpg', 'staff_guide_for_CE_portal.ppt'] //Image w/link
photos[17]=['Slide18.jpg', 'staff_guide_for_CE_portal.ppt'] //Image w/link
photos[18]=['Slide19.jpg', 'staff_guide_for_CE_portal.ppt'] //Image w/link
photos[19]=['Slide20.jpg', 'staff_guide_for_CE_portal.ppt'] //Image w/link
photos[20]=['Slide21.jpg', 'staff_guide_for_CE_portal.ppt'] //Image w/link
photos[21]=['Slide22.jpg', 'staff_guide_for_CE_portal.ppt'] //Image w/link
photos[22]=['Slide23.jpg', 'staff_guide_for_CE_portal.ppt'] //Image w/link
photos[23]=['Slide24.jpg', 'staff_guide_for_CE_portal.ppt'] //Image w/link
photos[24]=['Slide25.jpg', 'staff_guide_for_CE_portal.ppt'] //Image w/link
photos[25]=['Slide26.jpg', 'staff_guide_for_CE_portal.ppt'] //Image w/link
photos[26]=['Slide27.jpg', 'staff_guide_for_CE_portal.ppt'] //Image w/link
photos[27]=['Slide28.jpg', 'staff_guide_for_CE_portal.ppt'] //Image w/link
photos[28]=['Slide29.jpg', 'staff_guide_for_CE_portal.ppt'] //Image w/link
photos[29]=['Slide30.jpg', 'staff_guide_for_CE_portal.ppt'] //Image w/link
photos[30]=['Slide31.jpg', 'staff_guide_for_CE_portal.ppt'] //Image w/link
photos[31]=['Slide32.jpg', 'staff_guide_for_CE_portal.ppt'] //Image w/link
////NO NEED TO EDIT BELOW THIS LINE////////////
var preload=new Array()
for (var i_tem = 0; i_tem < photos.length; i_tem++){
preload[i_tem]=new Image()
preload[i_tem].src=photos[i_tem][0]
}
var actualheight=marqueecontent=''
var copyspeed=marqueespeed
var pausespeed=(pauseit)? 0 : copyspeed
var iedom=document.all||document.getElementById
var cross_marquee, cross_marquee2, ns_marquee
for (var i_tem = 0; i_tem < photos.length; i_tem++){
if (typeof photos[i_tem][1]!=='undefined'){
marqueecontent+='<a href="'+photos[i_tem][1]+'"'
marqueecontent+=typeof photos[i_tem][2]!=='undefined'? ' target="'+photos[i_tem][2]+'"' : ''
marqueecontent+='>'
}
marqueecontent+='<img src="'+photos[i_tem][0]+'" border="'+imgBorder+'"><br>'
marqueecontent+=typeof photos[i_tem][1]!=='undefined'? '</a>' : ''
}
if (iedom||document.layers){
with (document){
if (iedom){
write('<div style="overflow:hidden;"><div style="position:relative;width:'+marqueewidth+';height:'+marqueeheight+';overflow:hidden" onMouseover="copyspeed=pausespeed" onMouseout="copyspeed=marqueespeed">')
write('<div id="iemarquee" style="position:absolute;left:0px;top:0px;width:100%;"><table align="center"><tr><td height="'+marqueeheight+'" align="center" valign="middle">Loading . . .</td></tr></table>')
write('</div><div id="iemarquee2" style="position:absolute;left:0px;top:0px;width:100%;">')
write('</div></div></div>')
}
else if (document.layers){
write('<ilayer width='+marqueewidth+' height='+marqueeheight+' name="ns_marquee">')
write('<layer name="ns_marquee2" width='+marqueewidth+' height='+marqueeheight+' left=0 top=0 onMouseover="copyspeed=pausespeed" onMouseout="copyspeed=marqueespeed"></layer>')
write('</ilayer>')
}
}
}
function populate(){
if (document.all)
for (var i_tem = 0; i_tem < preload.length; i_tem++)
if (typeof preload[i_tem].complete=='boolean'&&!preload[i_tem].complete){
setTimeout("populate();", 2000)
return;
}
if (iedom){
cross_marquee=document.getElementById? document.getElementById("iemarquee") : document.all.iemarquee
cross_marquee2=document.getElementById? document.getElementById("iemarquee2") : document.all.iemarquee2
cross_marquee.style.top=(full==1)? '0px' : parseInt(marqueeheight)+0+"px"
cross_marquee2.innerHTML=cross_marquee.innerHTML=marqueecontent
actualheight=cross_marquee.offsetHeight
cross_marquee2.style.top=(parseInt(cross_marquee.style.top)+actualheight+0)+"px" //indicates following #1
}
else if (document.layers){
ns_marquee=document.ns_marquee.document.ns_marquee2
ns_marquee.top=parseInt(marqueeheight)+8
ns_marquee.document.write(marqueecontent)
ns_marquee.document.close()
actualheight=ns_marquee.document.height
}
setTimeout('lefttime=setInterval("scrollmarquee()",20)',initPause)
}
window.onload=populate
function scrollmarquee(){
if (iedom){
if (parseInt(cross_marquee.style.top)<(actualheight*(-1)))
cross_marquee.style.top=(parseInt(cross_marquee2.style.top)+actualheight)+"px"
if (parseInt(cross_marquee2.style.top)<(actualheight*(-1)))
cross_marquee2.style.top=(parseInt(cross_marquee.style.top)+actualheight)+"px"
cross_marquee2.style.top=parseInt(cross_marquee2.style.top)-copyspeed+"px"
cross_marquee.style.top=parseInt(cross_marquee.style.top)-copyspeed+"px"
}
else if (document.layers){
if (ns_marquee.top>(actualheight*(-1)+8))
ns_marquee.top-=copyspeed
else
ns_marquee.top=parseInt(marqueeheight)+8
}
}
</script>