1

我有一个应用程序向导,它应该可以滑动面板以显示简历应用程序的其他部分。这是我的网站: http ://atomicflowtech.com/portfolio/fmsresume/ 当您单击表单上的任意位置时,您可以看到我想要达到的效果,但是面板彼此位于下方,然后它们会向上滑动。任何线索如何解决这个问题?如果这个问题措辞不当,我很抱歉,我只是想不出如何更好地解释它,我认为这个例子不言自明。谢谢你的帮助!

我试图达到这个效果:http: //jsfiddle.net/jtbowden/ykbgT/2/

4

2 回答 2

2

链接有什么问题?

HTML:

<div id="container">
    <div id="box1" class="box">Div #1</div>
    <div id="box2" class="box">Div #2</div>
    <div id="box3" class="box">Div #3</div>
    <div id="box4" class="box">Div #4</div>
    <div id="box5" class="box">Div #5</div>
</div>

CSS:

body {
    padding: 0px;    
}

#container {
    position: absolute;
    margin: 0px;
    padding: 0px;
    width: 100%;
    height: 100%;
    overflow: hidden;  
}

.box {
    position: absolute;
    width: 50%;
    height: 300px;
    line-height: 300px;
    font-size: 50px;
    text-align: center;
    border: 2px solid black;
    left: 150%;
    top: 100px;
    margin-left: -25%;
}

#box1 {
    background-color: green;
    left: 50%;
}

#box2 {
    background-color: yellow;
}

#box3 {
    background-color: red;
}

#box4 {
    background-color: orange;
}

#box5 {
    background-color: blue;
}

JS:

$('.box').click(function() {

    $(this).animate({
        left: '-50%'
    }, 500, function() {
        $(this).css('left', '150%');
        $(this).appendTo('#container');
    });

    $(this).next().animate({
        left: '50%'
    }, 500);
});​

​ 你只需要改变内容,不是吗?​</p>

于 2012-04-11T22:14:25.383 回答
0

好像你只需要把那个容器浮起来。应该做的伎俩。让我知道事情的后续

于 2012-04-11T22:39:24.997 回答