我正在使用 jquery 循环单词。自然,单词大小会发生变化,导致其旁边的非动画文本移位。有没有办法平滑这种位置变化?
我有什么:http: //jsfiddle.net/tWm36/121/
我想要实现的目标:https ://gumroad.com/
看看文本如何平滑地移动以适应循环中的单词,而不是突然移动?
<div>
<span id="changerificwordspanid">awesome</span>
<span>This is so</span>
(function(){
var words = [
'awesome',
'incredible',
'cool',
'fantastic'
], i = 0;
setInterval(function(){
$('#changerificwordspanid').fadeOut(function(){
$(this).html(words[i=(i+1)%words.length]).fadeIn();
});
}, 2000);
})();