Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to make a sort of repeating slideshow banner for my website, but i need some help on how to do it. The best example of what i want is on the play.com website, they have a banner that has 5 different slides, the site scrolls between them after X amount of time but the user can also click on one of the numbered buttons at the bottom of the banner to skip.

I'm thinking of doing this using HTML, CSS, JavaScript, AJAX and PHP. I have an Ajax script set up already linking to a php page that will at somepoint check through a database to get its content. But i want to output everything using lists lu and li.

So does anyone know of any tutorials or something i could use to get something like on play.com? play.com is more or less and exact match to what i want.

Thanks for the help.

share|improve this question

5 Answers

up vote 2 down vote accepted

You can use jQuery in combination with slideshow plugins. You don't have to do much by yourself. A plugin which does what you want can be found here: http://slidesjs.com

You can also search Google for "jquery slideshow". This should return lots of pages with plugins.

share|improve this answer

check link here there are awesome slideshow's there...

share|improve this answer
2  
While this link may answer the question, it is better to include the essential parts of the answer here and provide the link for reference. Link-only answers can become invalid if the linked page changes. – alestanis Nov 15 '12 at 8:04

I use http://jquery.malsup.com/cycle/ as it has a very basic fade but also lots of different animations if needed.

share|improve this answer

Unless you have a good reason for it, there's no need for you to create the slider yourself, there are tons of options already made (and tested).

I often use this two:

http://nivo.dev7studios.com/demos/

http://jquerytools.org/demos/scrollable/index.html

share|improve this answer

here is a really simple one that loops through any number of <img> elements placed inside a <div class="slideshow"> wrapper and it only uses a few lines of jQuery and css...


http://jsfiddle.net/DaveAlger/eNxuJ/1/


hope this helps someone else

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.