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

Just working with the Jquery Cycle plugin, and I have a box which allows users to scroll through a list of categories in boxes. But I can't seem to find a way to allow Jquery Cycle to display more than one of the boxes at a time, allowing users to scroll up or down to reveal more boxes.

Here is the html:

<div id="themeSearch">
    <h1 class="mainSectionHeader">By Theme</h1>
    <div class="scrollUp eventSearchScroll"><a href="#" id="prev6"><img src="<?php bloginfo('template_directory'); ?>/images/scrollUp.png" alt="Scroll Up" /></a></div>
    <div id="themeSelector">
        <div class="themeItem"><p><span>On foot<span></p><a href="#"><span>Go</span></a></div>
        <div class="themeItem"><p><span>Vintage Coach<span></p><a href="#"><span>Go</span></a></div>
        <div class="themeItem"><p><span>Helicopter<span></p><a href="#"><span>Go</span></a></div>
        <div class="themeItem"><p><span>Boat<span></p><a href="#"><span>Go</span></a></div>
    </div>
    <div class="scrollDown eventSearchScroll"><a href="#" id="next6"><img src="<?php bloginfo('template_directory'); ?>/images/scrollDown.png" alt="Scroll Down" /></a></div>
</div>

...the css:

    #themeSearch {
    background: url(../images/bgRed.png) top left repeat;
    width: 275px;
    height:346px;
    padding: 15px;
    float: left;
    margin: 0 20px;
}
#themeSelector {
    height:216px;
}
.themeItem {
    width: 100%;
    height: 35px;
    border: 1px solid #6e060a;
    clear: both;
    margin: 19.5px 0;
}

...and the js:

    jQuery(document).ready(function() {
    jQuery('#themeSelector').cycle({ 
    fx:     'scrollUp', 
    timeout: 6000, 
    delay:  -2000 ,
    next:   '#next6', 
    prev:   '#prev6'
});
});

In this particular case, I want to show about 4 'themeItems' at one time, allowing users to scroll up and down to reveal more.

Thanks

share|improve this question

3 Answers

up vote 1 down vote accepted

Sounds more like you need to use something like jCarousel

http://sorgalla.com/projects/jcarousel/

share|improve this answer

jQuery cycle can only show one 'slide' at a time, you could simulate what you're trying to do though by putting more than one item of content (for example three or four images) into a single slide. That way you'd have 3 or 4 image showing at once, and when the container cycles you'll get your next slide of 3-4 images.

share|improve this answer
Thanks @Hath. Clive - I did actually consider this method, but unfortunately this section of the page is planned to be content manageable so it wouldn't work very well in regards to the CMS I'm using. Thanks alot though! – remi90 Sep 15 '11 at 9:31

You might want to try:

http://www.gmarwaha.com/jquery/jcarousellite/

where you can specify visbility:

visible: 2

To show 2 images

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.