我正在尝试创建一个轮播,但是在我从 div 列表的末尾删除元素并将其应用到开头之后,它只会将另一个元素向下移动而不占用列表开头的空间。请看看你能不能在这件事上帮助我。
代码是:使用按钮启动轮播。
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Untitled Document</title>
<script src="jquery-1.3.2.js"></script>
<script>
$(function(){
$("#but").click(function(){
$(".slides").animate({left: "+=170"},2000);
//$('.wrap div').last().before$('.wrap div').first(;
timer=setInterval(function() {
//$(".wrap div:first-child").before($(".wrap div:last-child"))
$( ".wrap div:first-child" ).before($( ".wrap div:last-child" ));
},2000);
});
});
</script>
<style>
.wrap
{
border:1px solid red;
width:1000px;
overflow:hidden;
height:100px;
}
.slides
{
width:150px;
height:150px;
border:1px solid #C6F;
margin-left:2px;
margin-right:2px;
float:left;
margin-top:2px;
margin-bottom:2px;
text-align:center;
position:relative;
}
</style>
</head>
<body>
<div class="container">
<div class="wrap">
<div class="slides">1</div>
<div class="slides">2</div>
<div class="slides">3</div>
<div class="slides">4</div>
<div class="slides">5</div>
</div>
</div>
<button id ="but">hello</button>
</body>
</html>