nancy88 Posted September 7, 2008 Posted September 7, 2008 Hi , I have a nice javascript which rotates images in selected folder and I want this script appear on main page (index.php) above New products of June section. I try copy script in english/index.php where the main text area but it's gives error and I think there other way to do it. Somebody can help me pls? Thx
Guest Posted September 7, 2008 Posted September 7, 2008 Hi , I have a nice javascript which rotates images in selected folder and I want this script appear on main page (index.php) above New products of June section. I try copy script in english/index.php where the main text area but it's gives error and I think there other way to do it. Somebody can help me pls? Thx Why would js go in the language file? Try catalog/index.php
nancy88 Posted September 7, 2008 Author Posted September 7, 2008 I did copy / paste code in catalog/index.php but it's not show anywhere in page . this my script code: <script language="JavaScript1.2"> var slideshow_width= '479px' //SET SLIDESHOW WIDTH (set to largest image's width if multiple dimensions exist) var slideshow_height='250px' //SET SLIDESHOW HEIGHT (set to largest image's height if multiple dimensions exist) var pause=5000 //SET PAUSE BETWEEN SLIDE (2000=2 seconds) var slidebgcolor="white" var dropimages=new Array() dropimages[0]="header.jpg" dropimages[1]="header1.jpg" dropimages[2]="header2.jpg" var droplinks=new Array() droplinks[0]="http://www.yahoo.com" droplinks[1]="" droplinks[2]="http://www.google.com" var preloadedimages=new Array() for (p=0;p<dropimages.length;p++){ preloadedimages[p]=new Image() preloadedimages[p].src=dropimages[p] } var ie4=document.all var dom=document.getElementById if (ie4||dom) document.write('<div style="position:relative;width:'+slideshow_width+';height:'+slideshow_height+';overflow:hidden"><div id="canvas0" style="position:absolute;width:'+slideshow_width+';height:'+slideshow_height+';background-color:'+slidebgcolor+';right:-'+slideshow_width+'"></div><div id="canvas1" style="position:absolute;width:'+slideshow_width+';height:'+slideshow_height+';background-color:'+slidebgcolor+';right:-'+slideshow_width+'"></div></div>') else document.write('<a href="java script:rotatelink()"><img name="defaultslide" src="'+dropimages[0]+'" border=0></a>') var curpos=parseInt(slideshow_width)*(-1) var degree=10 var curcanvas="canvas0" var curimageindex=linkindex=0 var nextimageindex=1 function movepic(){ if (curpos<0){ curpos=Math.min(curpos+degree,0) tempobj.style.right=curpos+"px" } else{ clearInterval(dropslide) nextcanvas=(curcanvas=="canvas0")? "canvas0" : "canvas1" tempobj=ie4? eval("document.all."+nextcanvas) : document.getElementById(nextcanvas) var slideimage='<img src="'+dropimages[curimageindex]+'" border=0>' tempobj.innerHTML=(droplinks[curimageindex]!="")? '<a href="'+droplinks[curimageindex]+'">'+slideimage+'</a>' : slideimage nextimageindex=(nextimageindex<dropimages.length-1)? nextimageindex+1 : 0 setTimeout("rotateimage()",pause) } } function rotateimage(){ if (ie4||dom){ resetit(curcanvas) var crossobj=tempobj=ie4? eval("document.all."+curcanvas) : document.getElementById(curcanvas) crossobj.style.zIndex++ var temp='setInterval("movepic()",50)' dropslide=eval(temp) curcanvas=(curcanvas=="canvas0")? "canvas1" : "canvas0" } else document.images.defaultslide.src=dropimages[curimageindex] linkindex=curimageindex curimageindex=(curimageindex<dropimages.length-1)? curimageindex+1 : 0 } function rotatelink(){ if (droplinks[linkindex]!="") window.location=droplinks[linkindex] } function resetit(what){ curpos=parseInt(slideshow_width)*(-1) var crossobj=ie4? eval("document.all."+what) : document.getElementById(what) crossobj.style.right=curpos+"px" } function startit(){ var crossobj=ie4? eval("document.all."+curcanvas) : document.getElementById(curcanvas) crossobj.innerHTML='<a href="'+droplinks[curimageindex]+'"><img src="'+dropimages[curimageindex]+'" border=0></a>' rotateimage() } if (ie4||dom) window.onload=startit else setInterval("rotateimage()",pause) </script>
Guest Posted September 7, 2008 Posted September 7, 2008 All you have done is put the js in. Does what you are doing have install instruction?
nancy88 Posted September 7, 2008 Author Posted September 7, 2008 there is no install instruction , it a simple javascript i wanna show on main page
Recommended Posts
Archived
This topic is now archived and is closed to further replies.