答案 0 :(得分:0)
您应该将h1标记的CSS设置为position:fixed
。然后,在每个h1的javascript中,您的生成将其left
属性设置为Math.random() * window.outerWidth
,将其top
属性设置为Math.random() * window.outerHeight
。
答案 1 :(得分:0)
您可以通过position:fixed
或position:absolute
来实现此目标。
$('.tlt').each(function(){
$(this).css({"left": Math.random() * window.outerWidth , "top": Math.random() * window.outerHeight}).textillate();
});
OR
$('h1').each(function(){
$(this).css({"left": Math.random() * window.outerWidth , "top": Math.random() * window.outerHeight}).textillate();
});
更新了jsfiddle