我有一个JavaScript程序,它在页面标题()中显示当前日期和时间,然后我尝试将此标题动画为爬行线,但没有任何效果。尝试使用切片方法和substring方法,但没有任何效果。
function updateDateTime() {
let datetime = new Date();
let datetimeString = datetime.toLocaleString();
document.title = datetimeString;
}
setInterval(updateDateTime, 1000); // оновлюємо час кожну секунду
updateDateTime();
let marquee = document.getElementById("marquee");
let datetime = document.getElementById("datetime");
function shiftDateTime() {
const unit = "px";
let position = Number.parseInt(datetime.style.right) || 0;
let width = datetime.offsetWidth;
position = position > marquee.offsetWidth ?
-width :
position + 1;
datetime.style.right = position + unit;
requestAnimationFrame(shiftDateTime);
}
shiftDateTime();
<!DOCTYPE html>
<html>
<head>
<title>Date&Time marquee</title>
</head>
<body>
<div id="marquee">
<span id="datetime"></span>
</div>
</body>
</html>
这是我的代码,我所能做的就是在标题中显示当前的日期和时间。最后,我们的程序应该在页面标题中显示当前的日期和时间,并将它们从右到左显示为一条连续的线。我怎么做呢?
2条答案
按热度按时间xqk2d5yq1#
第一个空格字符不能在html标题元素中使用。
您可以使用
_
代替。dwbf0jvd2#
只需在每次迭代时添加一个空格: