【发布时间】:2016-07-01 06:05:14
【问题描述】:
我有一个在 Chrome 中完美运行的脚本,但 CSS 在 Edge 中不起作用,滚动文本在 IE10 中不起作用。
看看它在 Chrome 中应该如何工作(请等待大约 5 秒让滚动文本开始:
https://jsfiddle.net/oxw4e5yh/
CSS:
<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;
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>
【问题讨论】:
标签: javascript html css