例如,假设我有一个100%
宽度和100px
高度的div元素。在div中,我有6个div元素向左浮动,启用了overflow-x
。我想要实现的是,用户可以滚动这些div的循环(以便最后一个div元素后跟第一个 - 无限循环)。
知道怎么办?
答案 0 :(得分:5)
您可以使用jQuery insertAfter
和insertBefore
函数
$('.next').click(function(){
var last = $('#parent').find('div').last();
$('#parent').find('div').first().insertAfter(last);
});
$('.prev').click(function(){
var first= $('#parent').find('div').first();
$('#parent').find('div').last().insertBefore(first);
});
以下是DEMO
答案 1 :(得分:4)
append / prepend分别取决于你要去的方向的第一个/最后一个元素。
jQuery(window).keyup(function(e){
switch(e.keyCode){
case 37:
left();
break;
case 39:
right();
break;
}
})
var container=jQuery("#container");
function left(){
container.find(".item:last").prependTo(container);
}
function right(){
container.find(".item:first").appendTo(container);
}
html,body {
width:100vw;
height:100vh;
padding:0px;
margin:0px;
}
#container {
width:100vw;
height:100px;
display:flex;
position:relative;
}
.item {
width:100px;
height: 94px;
margin:3px;
flex:0 1 100px;
}
.red {background:#F00;}
.green {background:#0F0;}
.blue {background:#00F;}
.yellow {background:#FF0;}
.turq {background:#0FF;}
.purple {background:#F0F;}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<div id="container">
<div class="item red"></div>
<div class="item green"></div>
<div class="item blue"></div>
<div class="item yellow"></div>
<div class="item turq"></div>
<div class="item purple"></div>
</div>