这是我的第一个问题(我先搜索并浏览了几个小时)
所以我试图构建一个单页网站,其中包含基于我发现的这个jsfiddle的滑动偏移部分:http://jsfiddle.net/jtbowden/ykbgT/ 归功于jtbowden!
<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>
的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: 50%;
top: 100px;
margin-left: -25%;
}
#box1 {
background-color: green;
left: -150%;
}
#box2 {
background-color: yellow;
}
#box3 {
background-color: red;
left: 150%;
}
JS:
$('.box').click(function() {
$('.box').each(function() {
if ($(this).offset().left < 0) {
$(this).css("left", "150%");
} else if ($(this).offset().left > $('#container').width()) {
$(this).animate({
left: '50%',
}, 500 );
} else {
$(this).animate({
left: '-150%',
}, 500 );
}
});
});
它完全符合我的要求,但是当你添加更多部分时,他们会开始吃掉每个其他内容而不会像只有一个“容器”那样返回“div1” 基本上发生了什么:http://jsfiddle.net/cody32x/MTvG8/ 我已经尝试重命名每个部分甚至为每个部分创建新功能但我无法弄明白!
<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 id="box6" class="box">Div #1</div>
<div id="box7" class="box">Div #2</div>
<div id="box8" class="box">Div #3</div>
<div id="box9" class="box">Div #4</div>
<div id="box10" class="box">Div #5</div>
</div>
<div id="container2">
<div id="box1" class="box">2-Div #1</div>
<div id="box2" class="box">2-Div #2</div>
<div id="box3" class="box">2-Div #3</div>
<div id="box4" class="box">2-Div #4</div>
<div id="box5" class="box">2-Div #5</div>
<div id="box6" class="box">2-Div #1</div>
<div id="box7" class="box">2-Div #2</div>
<div id="box8" class="box">2-Div #3</div>
<div id="box9" class="box">2-Div #4</div>
<div id="box10" class="box">2-Div #5</div>
</div>
的CSS:
body {
padding: 0px;
}
#container {
position: absolute;
margin: 0px;
padding: 0px;
width: 100%;
height: 100%;
overflow: hidden;
cursor: pointer;
}
#container2 {
position: absolute;
margin: 0px;
padding: 0px;
width: 100%;
height: 100%;
top: 300px;
overflow: hidden;
cursor: pointer;
}
.box {
position: absolute;
width: 100%;
height: 100px;
line-height: 100px;
font-size: 50px;
text-align: center;
border: 2px solid black;
left: 200%;
top: 100px;
margin-left: -50%;
}
#box1 {
background-color: green;
left: 50%;
}
#box2 {
background-color: yellow;
}
#box3 {
background-color: red;
}
#box4 {
background-color: orange;
}
#box5 {
background-color: blue;
}
#box6 {
background-color: black;
}
#box7 {
background-color: gray;
}
#box8 {
background-color: blue;
}
#box9 {
background-color: red;
}
#box10 {
background-color: aqua;
}
JS:
$('.box').click(function() {
$(this).animate({
left: '-50%'
}, 500, function() {
$(this).css('left', '150%');
$(this).appendTo('#container');
});
$(this).next().animate({
left: '50%'
}, 500);
});
非常感谢!对不起,如果我在这里没有正确发布...我是新人。
答案 0 :(得分:0)
要修复移动到另一个容器中的项目,请更改以下行:
$(this).css('left', '150%');
$(this).appendTo('#container');
......对此:
var $this = $(this);
$this.css('left', '150%').appendTo($this.parent());
...就像现在你对两行方框使用相同的#container
。
要修复重叠框,请更改此...
.box {
position: absolute;
width: 100%;
......进入这个:
.box {
position: absolute;
width: 98%;
......因为2px宽的边界也应该被考虑在内。
最后,不要忘记从div.box
- es中删除重复的ID。你真的不需要它们,因为你可以在这里轻松地设置类的样式。
这是demo,说明了所说的内容,并进行了一些CSS清理。