作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使元素(div)一一滑入。但我得到的只是所有元素同时滑动。老实说我不明白为什么。对我来说一切看起来都是正确的。谁能帮我吗?
HTML:
<div class="box">
</div>
<div class="box">
</div>
<div class="box">
</div>
CSS:
.box {
width:100px;
height:100px;
background-color:red;
margin:20px 20px 20px 500px;
}
jQuery:
$(document).ready(function() {
$('.box').css('margin-left', -200)
$('.box').each(function() {
$(this).delay(5000).animate({
'marginLeft' : "+=700px"
}, 2000);
});
});
jsfiddle:http://jsfiddle.net/87yjhybd/
非常感谢任何帮助!/最好的问候约翰
最佳答案
像这样吗?
$(document).ready(function() {
$('.box').css('margin-left', -200)
$('.box').each(function(i) {
$(this).delay(5000*i).animate({
'marginLeft' : "+=700px"
}, 2000);
});
});
已更新
我错过了 $(document).ready(); :)
更新2
$('.box').each(function(index, element){...
index
,在我的代码中是i
,是循环中当前元素的索引。元素
- 值。它是索引为 index
您可以在 jQuery documentation 中看到它
关于jquery - 如何让元素一张一张滑入?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32375762/
我是一名优秀的程序员,十分优秀!