我试图以随机速度淡化段落中的每个单词,这样就会产生出现在纸上的单词效果。我正在使用jquery并以这种方式进行。但是接缝很重(是这样吗?)。 请建议一个更好的方法。
$('body').children('.word').each(function() {
$(this).animate({
"opacity": "1"
}, Math.floor(Math.random() * 3000) + 500);
});
.word {
opacity: 0;
display: inline-block;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="word">
hello,
</div>
<div class="word">
how
</div>
<div class="word">
are
</div>
<div class="word">
you
</div>
<div class="word">
doing
</div>
答案 0 :(得分:0)
另一种方法是使用css过渡
JS:
$('body').children('.word').each(function() {
var word = this;
setTimeout(function () {
$(word).css("opacity", 1);
}, Math.random() * 3000)
});
CSS:
.word {
opacity: 0;
display: inline-block;
transition: opacity 1s linear;
}
你可以使用javascript来消除每个单词周围的包装:
$('.content').html($('.content').text().split(/[\s,\.]+/).map(function (word) {
return '<div class="word">' + word + '</div>'
}).join(''))