Anybody know how to add a image slideshow in the header? Well not header but like the body?
www.Lfswear.com
Anybody know how to add a image slideshow in the header? Well not header but like the body?
www.Lfswear.com
You have posted this in the Templates, Stylesheets, Page Layout section and there is no slideshow included with the default code.Anybody know how to add a image slideshow in the header? Well not header but like the body?
There are a couple of 3rd party modules for slideshows in the free software addons area in the link above left
Zen-Venom Get Bitten
I want a free one and cant find one...
Search the free software addons for "slide"I want a free one and cant find one...
Zen-Venom Get Bitten
I already download a couple, and cant get any of them to work!
I found a better one, it's simple html!
HTML Code:<script type="text/javascript">// <![CDATA[ var image1=new Image() image1.src="images/test1.png" var image2=new Image() image2.src="images/test2.png" var image3=new Image() image3.src="images/test3.png" // ]]></script> <p><img src="/lfs/admin/images/test1.png" alt="" width="500" height="200" /></p> <script type="text/javascript">// <![CDATA[ //variable that will increment through the images var step=1 function slideit(){ //if browser does not support the image object, exit. if (!document.images) return document.images.slide.src=eval("image"+step+".src") if (step<3) step++ else step=1 //call function "slideit()" every 6.5 seconds setTimeout("slideit()",6500) } slideit() // ]]></script>