作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有以下功能,它使 #pic-grid
中的每个 div 淡入淡出并放大。
我希望每个 div 按顺序淡入,但略有重叠。每个淡入的过渡是 0.2
所以我希望第一个 div 在 0.1
淡入(已经通过 setTimeout
在代码中设置了100) 然后第二个 div 应该仅在 0.1s
(100 毫秒)后开始加载。
我已经尝试将 setTimeout
添加到 .each()
函数,但它似乎根本没有转换。
function fadeInImages(parentDiv){
setTimeout(function(){
$(parentDiv).children('div').each(function () {
console.log(this);
$(this).css('opacity','1').css('transform','scale(1)');
});
}, 100);
}
最佳答案
这是我的代码,简单,没有超时,没有延迟:演示 http://codepen.io/anon/pen/MaGQvm
var i = 0;
var length = $('#pic-grid').children('div').length;
doAnimate(i, length);
function doAnimate(i, length){
if(i < length){
$($('#pic-grid').children('div')[i]).animate({"opacity": 1}, 100, function(){doAnimate(i + 1, length);});
}
}
关于jquery - 让每个 div 在 0.2 秒后依次淡入,而不是异步淡入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33392973/
我是一名优秀的程序员,十分优秀!