Closed Thread Icon

Preserved Topic: Slide show with text links?Help please. (Page 1 of 1) Pages that link to <a href="https://ozoneasylum.com/backlink?for=18439" title="Pages that link to Preserved Topic: Slide show with text links?Help please. (Page 1 of 1)" rel="nofollow" >Preserved Topic: Slide show with text links?Help please. <span class="small">(Page 1 of 1)</span>\

 
kindred1
Neurotic (0) Inmate
Newly admitted

From:
Insane since: Feb 2002

posted posted 03-22-2002 22:16

Im looking for a script for an image slidesow.The user needs to be able to use a back and next button and off to the side the user could also use text links to view the slides if they choose...Ive found several with the ability to use the next back buttons but none with the capability of both.The slideshow thumbs need to be linkable also.Thanks for ny links or advice..

Slime
Lunatic (VI) Mad Scientist

From: Massachusetts, USA
Insane since: Mar 2000

posted posted 03-22-2002 23:24

If it's ok for each slide to be on a different page, it seems like this could be done easily with just simple HTML.

ShootingStar
Maniac (V) Inmate

From: Kanada
Insane since: Mar 2002

posted posted 03-23-2002 04:56

This one has back and next and clickable thumbs. I think you could easily add text links, no?: http://www.happypuppy.com/win/demos/majestic%2Dwin%2D1.html
hth

[This message has been edited by ShootingStar (edited 03-23-2002).]

bitdamaged
Maniac (V) Mad Scientist

From: 100101010011 <-- right about here
Insane since: Mar 2000

posted posted 03-23-2002 06:22

<script language=javascript>
// Code by bitdamaged. An totally untested.

// put your images in here
slides[0] = 'pathToImage1.gif';
slides[1] = 'pathToImage2.gif';
slides[2] = 'pathToImage3.gif';
slides[3] = 'pathToImage4.gif';
slides[4] = 'pathToImage5.gif';
slides[5] = 'pathToImage6.gif';


// put your links here (links align with images above)

links[0] = 'http://www.weherever.com/link1.html';
links[1] = 'http://www.weherever.com/link2.html';
links[2] = 'http://www.weherever.com/link3.html';
links[3] = 'http://www.weherever.com/link4.html';
links[4] = 'http://www.weherever.com/link5.html';
links[5] = 'http://www.weherever.com/link6.html';

// lets preload these suckas eh? (user can ignore)
slide = array
for (i=0;i<slides.length;i++) {
slide[i] = new Image;
slide[i].src = slides[i].src // yeah it's kinda ugly naming crap like this
}
goto = 0;
count = 0;


function flipslide(dir) {
num = 1
if (dir == 'down') num = -1;
count += num;
if (count >= slides.length) count = 0;
if (count < 0) count = slides.lenght - 1;

slideImg.src = slide[count].src

}

function shazzam() {
location.href = links[count];
}
</script>

Okay your body needs this in it the image name much match in function above!
<!-- Image links -->
<a href="javascript: shazzam()">
<img src="pathToImage1.gif' name="slideImg">
</a>

<a href="javascript: flipslide()"> Next</a><a href="javascript:flipslide('down')">Prev</a>


That should do it.
Don't have time to test, gotta see a lady about a beer

Can someone fix this if I fucked it somewhere?



.:[ The Tao of Steve ]:.
Be Desireless
Be Excellent
Be Gone
...................................

« BackwardsOnwards »

Show Forum Drop Down Menu