这在 jsbin 上不起作用,因为它使用绝对定位(除非您查看全屏演示).. 但无论如何我都提供了它供您将其复制/粘贴到您自己的浏览器http://jsbin.com/uteyik/12 / .. 以下是变更亮点:
CSS:
.row {
..
position:absolute; /* changed to absolute */
}
.mask {
..
width:100%; /* changed to 100% */
position:absolute; /*changed to absolute */
}
和javascript:
jQuery(document).ready(function() {
function fill_box(rows) {
var rowHeight = getSampleRowHeight();
var thisRowHeight = 0;
for(var i = 0; i < rows; i += 1) {
$('.box').append('<div class="row" style="top: '+thisRowHeight+'"><div class="scan_cursor i1"> </div><div class="scan_cursor i2"> </div><div class="scan_cursor i3"> </div><div class="mask"> </div></div>');
thisRowHeight +=rowHeight;
}
}
fill_box(30);
function tag_animate(el) {
// animate the mask
el.animate( {
'margin-left' : '100%'
},
{
complete : function () {
tag_animate(el.parent().next().find('.mask'));
}
}
);
// animate the stripes
el.siblings().animate( {
'margin-left': '100%'
},
{
complete : function () {
el.siblings().hide();
}
}
);
}
tag_animate($('.box').find('.row').eq(0).find('.mask'));
function getSampleRowHeight() {
// get sample row height, append to dom to calculate
$('.box').append('<div class="row" style="display: hidden"> <div class="scan_cursor i1"> </div></div>');
var rowHeight = $('.row').height();
$('.box').find('.row').remove();
return rowHeight;
}
});
解释:我首先创建一个虚拟行并计算它的高度。然后,我使用虚拟行高 x 行号创建具有position: absolute
并从顶部定位它的行。这个想法是我想用绝对定位制作所有东西,这样当它是 100% 时,面具不会推动下面的条纹,而且行必须是绝对的,因为当我让它的内容消失时,我不想要行下面跳起来。
奖金:看到它以相反的方式工作(即文本消失):http: //jsbin.com/uteyik/9这是我最初的(和不正确的)答案