Results 1 to 4 of 4

Thread: Image Slideshow
      
   

  1. #1
    Trippnessa is offline Private First Class
    Join Date
    May 2010
    Posts
    8

    Default Image Slideshow

    I've been trying to find a way to put an image slide-show on the website I'm making, but so far I haven't been successful. I've found ways to put single images and picture galleries, but I'm looking for something along these lines:

    http://activeden.net/item/homepage-s...-as2-xml/12601

    I want the images to automatically scroll through each other slowly like in that one, and I'd like it on the homepage of my site.

    My domain is http://www.drugrehab-seattle.com/

  2. #2
    Alien Dude's Avatar
    Alien Dude is offline Lieutenant Colonel
    Join Date
    Apr 2008
    Location
    The Dark Side
    Posts
    562

    Default Re: Image Slideshow

    These are made in Flash or a flash based program something along the lines of these examples But if you want a script based gallery then try this one

  3. #3
    MagicToolbox's Avatar
    MagicToolbox is offline Private
    Join Date
    Jul 2008
    Location
    Europe
    Posts
    2

    Default Re: Image Slideshow

    Quote Originally Posted by Trippnessa View Post
    I want the images to automatically scroll through each other slowly...
    This image slideshow is easy to install. It auto slides or fades images.

    Your HTML:

    Code:
    <div class="MagicSlideshow">
    <img src="example1.jpg"/>
    <img src="example2.jpg"/>
    <img src="example3.jpg"/>
    </div>
    Then put a link to the JS and CSS after the <head>.

    You can change the speed like this (6 seconds):

    Code:
    <script type="text/javascript">
    MagicSlideshow.options = {
    'speed':'6'
    }
    </script>
    You can also change effect, direction, color, thumbnails, icons, arrows, text. Look at the examples page for ideas.

  4. #4
    Trippnessa is offline Private First Class
    Join Date
    May 2010
    Posts
    8

    Default Re: Image Slideshow

    Thanks to both of you, I think I can manage this. It's been a while since I studied coding but I know I can refresh my memory enough to figure it out. Not sure which one I'll do yet but thanks either way.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49