HTML 中的选取框没有 <marquee> .. </marquee>

Marquee in HTML without <marquee> .. </marquee>

我正在尝试编写运行流畅的滚动文本。 <marquee>..</marquee> 标签在没有颠簸的情况下无法工作,我认为这不是好的编程。我想在 JavaScript 中完成,但我完全是初学者。

我找到了一些易于理解的代码,但我认为最好看的滚动文本对我来说并不连贯。

不明白的地方谁能给我解释一下

代码:

var marqueewidth="2400px"   
var marqueeheight="45px"    
var speed=1 
var pause=1 //stop by mouseover 0=no. 1=yes

var marqueecontent='<nobr><span style="font-size:40px">*** Wir wünschen einen guten Start in den Dezember!!! ***</span></nobr>'

var newspeed=speed
var pausespeed=(pause==0)? newspeed: 0

document.write('<span id="temp" style="visibility:hidden; position:absolute; top:0px; left:-9000px">'+marqueecontent+'</span>')

var actualwidth=''
var cross_marquee, ns_marquee

function populate(){
    cross_marquee= document.getElementById("marquee")
    cross_marquee.style.left=parseInt(marqueewidth)+8+"px"
    cross_marquee.innerHTML=marqueecontent
    actualwidth=document.getElementById("temp").offsetWidth
    lefttime=setInterval("scrollmarquee()",20)
}
window.onload=populate


function scrollmarquee(){
    if (parseInt(cross_marquee.style.left)>(actualwidth*(-1)+8))
        cross_marquee.style.left=parseInt(cross_marquee.style.left)-newspeed+"px"
    else
        cross_marquee.style.left=parseInt(marqueewidth)+8+"px" 
}

with (document){
        write('<div style="position:relative; top:655px; width:'+marqueewidth+'; height:'+marqueeheight+'; overflow:hidden">')
        write('<div onMouseover="newspeed=pausespeed" onMouseout="newspeed=speed">')
        write('<div id="marquee" style="position:absolute; left:0px; top:0px; "></div>')
        write('</div></div>')
}

问题:为什么我需要临时 div?我如何交换 CSS 中的样式?

我只会使用 CSS3-动画。它可以在每个现代浏览器中运行,就像一个魅力。您不需要 JavaScript 来移动元素。

如果你想打开和关闭它,只需添加和删除一个 CSS class。

我刚刚在 codepen 中构建了一个示例:http://codepen.io/anon/pen/LGEBbx

这是动画代码:

@keyframes marquee {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

我希望这是您正在寻找的解决方案。

好吧,marquee 不仅被弃用了,现在 obsolete 也被弃用了。

当然你可以创建一个JavaScript函数来模拟效果。但是使用 CSS 更简单,当然更流畅。

这是一个例子:

HTML

<div class="wrapper">
    <p>Hey, how you're doing? Sorry you can't get through.</p>
</div>

CSS

.wrapper {
  position: relative;
  overflow: hidden;
  height: 25px;
  width: 100px;
  border: 1px solid orange;
}

.wrapper p {
  position: absolute;
  margin: 0;
  line-height: 25px;
  white-space: nowrap;
  animation: marquee 5s linear infinite;
}

@keyframes marquee {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

演示

Try before buy