嗨,我是 jquery 的新手,我希望你们中的一个更有经验的人可以帮助我。我有一个容器设置为溢出:隐藏,在里面我有 3 个 div,其中两个是隐藏的,因为它们溢出了。我想让 div 在每次单击容器时都按顺序从右侧滑动。我有第二个 div 在点击时出现,但我不能让第三个移动。每次单击容器时,里面的 div 应该移动 100px,但它不会。请向我解释为什么它没有。这是 JS 小提琴链接-> http://jsfiddle.net/FSMMA/
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<style>
.container{
width:100px;
height:100px;
overflow:hidden;
position:relative;
}
.one,.two,.three{
display:inline-block;
position:relative;
}
.one{
width:100px;
height:100px;
background-color:green;
}
.two{
width:100px;
height:100px;
background-color:red;
}
.three{
width:100px;
height:100px;
background-color:blue;
}
.boxes{
width:400px;
}
</style>
</head>
<body>
<script type="text/javascript">
$(document).ready(function(){
$('.container').click(function(){
$('.boxes').offset({left :-100})
});
});
</script>
<div class="container">
<div class="boxes">
<div class="one">
</div>
<div class="two">
</div>
<div class="three">
</div>
</div>
</div>
</body>
</html>