我想在我的應用程序上進行水平滾動。有很多例子,但我找到了一個符合我需要的例子。但是,當我嘗試它時,它只是不工作,因爲它應該。請看看,並告訴我是什麼問題:javascript水平滾動文本
<!DOCTYPE html>
<html>
<head>
<style>
div.marquee {
white-space:no-wrap;
overflow:hidden;
}
div.marquee > div.marquee-text {
white-space:nowrap;
display:inline;
width:auto;
}
</style>
<script>
var marquee = $('div.marquee');
console.log(marquee);
marquee.each(function() {
var mar = $(this),indent = mar.width();
mar.marquee = function() {
indent--;
mar.css('text-indent',indent);
if (indent < -1 * mar.children('div.marquee-text').width()) {
indent = mar.width();
}
};
mar.data('interval',setInterval(mar.marquee,1000/60));
});
</script>
</head>
<body>
<div class='marquee'>
<div class='marquee-text'>
Testing this marquee function
</div>
</div>
</body>
</html>
那麼....你可以使用舊的'
@GavinThomas它不是1998;)
1)除了與舊的兼容性,不要使用'setInterval'動畫瀏覽器,'requestAnimationFrame'和CSS動畫更可靠。 2)每幀查找和設置屬性如「text-indent」和「width」對性能不利,變換效果更好。 3)你真的需要一個大帳篷嗎? ;) – gcampbell