|
|
|
| Web Hosting |
![]() ![]() |
Slideshow Of Pictures, Simple script |
Jul 8 2005, 07:33 PM
Post
#1
|
|
|
Member [ Level 1 ] Group: Members Posts: 31 Joined: 8-July 05 Member No.: 6,913 |
This is just a small script that lets you display a set of pictures in a slideshow-like manner. This script lets you show the thumbnailed versions of the pictures, and then when the user clicks on a pic, the user is taken to the actual picture.
NOTE: You can add more pictures to the array by copying the format that is being used in it: CODE <html> <head> <script language='Javascript' type='text/css'> <!-- slideshow = new Array( "images/image1.bmp", "images/image2.bmp", "images/image3.bmp", "images/image4.bmp" ) slideNumber = slideshow.length slideCurrent = 0 function loadSlides() { document.slide.src = slideshow[slideCurrent] } function slideNext() { if(slideCurrent < slideNumber) { slideCurrent ++ document.slide.src = slideshow[slideCurrent] } else { slideCurrent = 0 document.slide.src = slideshow[slideCurrent] } } function slidePrevious() { if(slideCurrent > 0) { slideCurrent -- document.slide.src = slideshow[slideCurrent] } else { slideCurrent = slideNumber - 1 } } function playSlides() { if(slideCurrent < slideNumber) { slideCurrent ++ document.slide.src = slideshow[slideCurrent] setTimeout("playSlides()", 2500) } else { slideCurrent = 0 document.slide.src = slideshow[slideCurrent] setTimeout("playSlides()", 2500) } } function openPicture() { window.open(slideshow[slideCurrent], "slideWindow") } //--> </script> </head> <body onLoad = loadSlides()> <a href='java script: openPicture()'><img name='slide' width=96 height=96></a><br> <center> <a href='java script: slidePrevious()'><img src='prev.bmp'></a> <a href='java script: slideNext()'><img src='prev.bmp'></a> <a href='java script: playSlides()'><img src='prev.bmp'></a> </center> </body> </html> If you need more information, just ask and I'll reply. Good luck with the script and enjoy! If I receive my hosting, I will upload the script to the server and show you what it's supposed to do. |
|
|
|
![]() ![]() |
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members:
Similar Topics
| Topic Title | Replies | Topic Starter | Views | Last Action | |||
|---|---|---|---|---|---|---|---|
![]() |
15 | soleimanian | 1,343 | 30th September 2008 - 10:01 AM Last post by: magiccode9 |
|||
![]() |
2 | WeaponX | 2,200 | 10th July 2008 - 04:12 PM Last post by: jaus |
|||
![]() |
20 | bad-and-ugly | 2,533 | 11th December 2007 - 09:46 AM Last post by: Dave Herbst |
|||
![]() |
10 | l337 Nurse Pedestrian | 1,974 | 22nd September 2007 - 01:05 PM Last post by: mshmsh2010 |
|||
![]() |
14 | miCRoSCoPiC^eaRthLinG | 3,118 | 16th December 2006 - 01:14 PM Last post by: richie |
|||
![]() |
21 | Nick Erwin | 2,359 | 10th October 2006 - 12:52 PM Last post by: ginginca |
|||
![]() |
0 | wutske | 1,741 | 26th May 2006 - 12:05 PM Last post by: wutske |
|||
![]() |
12 | dhanesh | 2,132 | 10th March 2006 - 05:49 AM Last post by: kuyakurt |
|||
![]() |
3 | ebbinger_413 | 833 | 9th February 2006 - 02:36 PM Last post by: ebbinger_413 |
|||
![]() |
6 | warbird | 1,128 | 16th January 2006 - 06:10 PM Last post by: jorbanks |
|||
![]() |
10 | RomfordReject1 | 1,701 | 28th December 2005 - 06:01 PM Last post by: chocolatxbliss |
|||
![]() |
10 | qwijibow | 2,297 | 29th November 2005 - 12:41 AM Last post by: techocian |
|||
![]() |
2 | soleimanian | 5,806 | 27th August 2005 - 12:01 AM Last post by: kiddo |
|||
![]() |
2 | sxyloverboy | 755 | 26th August 2005 - 08:07 PM Last post by: comateen |
|||
![]() |
1 | prosorcerer | 1,438 | 28th July 2005 - 11:46 AM Last post by: Giniu |
|||
|
Lo-Fi Version | Time is now: 10th January 2009 - 03:20 AM |
© 2009 AstaHost: Free Web Hosting & Technical Discussion, Free Web Hosting. a member of xisto.
Powered by Invision Board. Skin: IPB Forum Skins
Expand / Collapse Navigation



Jul 8 2005, 07:33 PM





