我有一个应用程序向导,它应该滑动面板以显示简历应用程序的其他部分。这是我的网站: http://atomicflowtech.com/portfolio/fmsresume/ 当您点击表单上的任何位置时,您可以看到我想要实现的效果,但是面板彼此之间然后它们会向上滑动。有任何线索如何解决这个问题?我很抱歉,如果这个问题措辞严厉,我就无法弄清楚如何更好地解释它,我想这个例子说明了一切。谢谢你的帮助!
我想要达到这个效果: http://jsfiddle.net/jtbowden/ykbgT/2/
答案 0 :(得分: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);
});
你只需改变内容,不是吗?
答案 1 :(得分:0)
看起来你只需要将那个容器漂浮起来。应该做的伎俩。让我知道它是怎么回事