好吧,所以我有一个弹出框,上面有一些文本,该文本是从文本文件中读取的,因此框中显示的文本并不总是相同。我正在利用CSS中的溢出功能,但是是否仍可以自动滚动溢出的文本,并且没有滚动条?
body{
background-color: black;
font-family: 'Source Sans Pro', sans-serif;
font-size: 20;
}
#Track{
color: white;
position: fixed;
top: 20px;
left: -500px;
animation-name: track;
animation-duration: 30s;
z-index: 1;
width: 200px;
white-space: nowrap;
overflow: scroll;
text-overflow: ellipsis;
}
#Artist{
color: #a5a5a5;
position: fixed;
top: 40px;
left: -500px;
animation-name: artist;
animation-duration: 30s;
z-index: -1;
width: 200px;
white-space: nowrap;
overflow: scroll;
text-overflow: ellipsis;
}