gpt4 book ai didi

javascript - 脚本在 jsfiddle 中有效,但在 HTML 文档中无效

转载 作者:行者123 更新时间:2023-11-30 09:47:46 24 4
gpt4 key购买 nike

我在 jsfiddle 中有一个有效的脚本:https://jsfiddle.net/oxw4e5yh/

但是在 HTML 文档中它不起作用:

<!DOCTYPE html>
<html lang="en">

<head>
<script type="text/javascript">
function calcSpeed(speed) {
// Time = Distance/Speed
var spanSelector = document.querySelectorAll('.marquee span'),
i;
for (i = 0; i < spanSelector.length; i++) {
var spanLength = spanSelector[i].offsetWidth,
timeTaken = spanLength / speed;
spanSelector[i].style.animationDuration = timeTaken + "s";
}
}
calcSpeed(75);
</script>


<style>
/* Make it a marquee */

.marquee {
width: 100%;
left: 0px;
height: 10%;
position: fixed;
margin: 0 auto;
white-space: nowrap;
overflow: hidden;
background-color: #000000;
bottom: 0px;
color: white;
font: 50px'Verdana';
}
.marquee span {
display: inline-block;
padding-left: 100%;
text-indent: 0;
animation: marquee linear infinite;
animation-delay: 5s;
background-color: #000000;
color: white;
bottom: 0px;
}
/* Make it move */

@keyframes marquee {
0% {
transform: translate(10%, 0);
}
100% {
transform: translate(-100%, 0);
}
}
/* Make it pretty */

.scroll {
padding-left: 1.5em;
position: fixed;
font: 50px'Verdana';
bottom: 0px;
color: white;
left: 0px;
height: 10%;
}
</style>
</head>

<body>
<div class="marquee">
<span>Lots of text, written in a long sentance to make it go off the screen. Well I hope it goes off the screen</span>
</div>

</body>

</html>

该脚本是一个 css 和 javascript 选取框,用于控制滚动文本的稳定速度。

知道我错过了什么吗?

此外,正如您在 fiddle 上看到的那样,文本开始滚动需要一段时间。我可以减少延迟吗?

最佳答案

在所有 DOM 准备就绪后调用您的 JS 函数,通常这是通过使用 window.onload 完成的,如下所示:

window.onload = function() {
calcSpeed(75);
}

关于javascript - 脚本在 jsfiddle 中有效,但在 HTML 文档中无效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38126571/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com