Reputation: 49384
I am using php to add image thumbnails to lists...
For example: - The output would be...
<ul>
<li><img src="images/image1.png" /></li>
<li><img src="images/image2.png" /></li>
<li><img src="images/image3.png" /></li>
<li><img src="images/image4.png" /></li>
<li><img src="images/image5.png" /></li>
<li><img src="images/image6.png" /></li>
</ul>
This is showing in horizontal view so one beside the other and 6 fit in the page.
What I need to do is to have all one them loading at once but just 6 showing and have a "view more" button that I can press and will then show the next 6 and so on.
Anyone know of a JQuery plugin for this or can point to a script?
Upvotes: 1
Views: 9046
Reputation: 39826
what you're looking for is called carousel, take your pick: 50+ Best jQuery Carousel Roundup
Upvotes: 2