Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have 3 images of squirrels:

<img src="images/SquirrelFull.jpeg"  class="squirrel">
<img src="images/SquirrelName.jpeg"  class="squirrel">
<img src="images/SquirrelEmpty.jpeg"  class="squirrel">

I want to put them on top of one another and "toggle" through them with a click. Can anyone help me?

share|improve this question

4 Answers

up vote 2 down vote accepted

If you don't feel like using a plugin, here's an example of how you could toggle through your squirrels:

http://jsfiddle.net/jAMzV/

Basically I put the squirrels in a parent container, and hide them all except the one with the class default. Then you bind a click-event on the squirrels which does the following:

Hide the one clicked, which is the only one visible Check if there's a next element in line, if there's not, pick the first one and show that, otherwise show the next one.

This way it loops over and over.

share|improve this answer
Even though I know your code is correct, it still doesn't work for some crazy reason. The css and html work fine when I tweek them, but I get nothing from the js. I have a link in the head to ` <script language="javascript" src="ajax.googleapis.com/ajax/libs/jquery/1.7.1/…; </script> ` I don't know what is up, but thank you! – Niko Feb 14 '12 at 9:09
WOW! I finally figured it out. It was some crazy little invisible error that happened when I copied and pasted your code directly into Dreamweaver. It totally works now. Phew!! There's 7 hours of my life I'll never see again. :-) – Niko Feb 14 '12 at 20:46

You can use JQueryCycle plugin. Is easy to learn and powerfull... You'll find all information you need in their page

Here, i think its that you want:

<h1>Example</h1>
<div id="s1" class="pics">
                <img src="http://cloud.github.com/downloads/malsup/cycle/beach1.jpg" width="200" height="200" />
                <img src="http://cloud.github.com/downloads/malsup/cycle/beach2.jpg" width="200" height="200" />
                <img src="http://cloud.github.com/downloads/malsup/cycle/beach3.jpg" width="200" height="200" />
</div>
<div class="nav">(Click on image for next slide)</div>
<pre>
<code class="mix">$('#s1').cycle({
        fx:     'slideY',
        speed:  300,
        next:   '#s1',
        timeout: 0 });
</code></pre>
share|improve this answer

You can take jCarousel: http://sorgalla.com/projects/jcarousel/examples/static_circular.html
For this you only have to write in JavaScript this:

    $(function(){

/*#mycarousel is the ID from the ul list*/

    $('#mycarousel').jcarousel({
        "wrap": 'circular',
        "scroll": 1
    });

an in html you don't have to forget this:

<script type="text/javascript" src="jquery-1.6.4.js"></script>
<script src="jquery.jcarousel.min.js" type="text/javascript"></script>

and then you just can create your slide with the right classes

<div class="jcarousel-container jcarousel-container-horizontal" id="pictureslide">
  <div class="jcarousel-clip jcarousel-clip-horizontal" id="pic" style='position: relative;'>
    <ul id="mycarousel" class="jcarousel-list jcarousel-list-horizontal">
        <li class='jcarousel-item jcarousel-item-horizontal jcarousel-item-1 jcarousel-item-1-horizontal' id='jcarousel-item-1'>
            <img src="images/SquirrelFull.jpeg"  class="squirrel">
            </li>
        <li class='jcarousel-item jcarousel-item-horizontal jcarousel-item-1 jcarousel-item-2-horizontal' id="jcarousel-item-2" >
            <img src="images/SquirrelName.jpeg"  class="squirrel">
            </li>
        <li class='jcarousel-item jcarousel-item-horizontal jcarousel-item-1 jcarousel-item-3-horizontal' id="jcarousel-item-3" >
        <img src="images/SquirrelEmpty.jpeg"  class="squirrel">
        </li>
    </ul>   
    </div>
 <!-- Here are the arrows-->   
    <div class="jcarousel-prev jcarousel-prev-horizontal" style="display:'block'">
        <a class="controls prev" href="#"><img id="arrow-left" src="pic/arrow_left.png" alt="arrow-left" /></a>
    </div>
    <div class="jcarousel-next jcarousel-next-horizontal" style="display:'block'">
        <a class="controls next" href="#"><img id="arrow-right" src="pic/arrow_right.png" alt="arrow-right"/></a>
    </div>
share|improve this answer

I think you want to do something like this:

http://jsfiddle.net/Fzxgd/1/

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.