2

我正在尝试使用这个 CodePen

这是我的问题:http: //jacobstone.co.uk/Livetesting/Vertical%20scroll%20text/index.html

我目前只能让它在 Firefox 中工作,而不是 Chrome 或 Safari。我是否使用了错误的前缀?多年来一直试图让它工作!

body{
font:normal 40px/50px Arial, sans-serif;
color:#999;
}
.anim p{
height:50px;
float:left;
margin-right:0.3em;
}
.anim b{
float:left;
overflow:hidden;
position:relative;
height:50px;
}
.anim span1{
display:inline-block;
color:#e74c3c;
position:relative;
white-space:nowrap;
top:0;
left:0;
/*animation*/
-webkit-animation:move 5s;
   -moz-animation:move 5s;
    -ms-animation:move 5s;
     -o-animation:move 5s;
        animation:move 5s;
/*animation-iteration-count*/
-webkit-animation-iteration-count:infinite;
   -moz-animation-iteration-count:infinite;
    -ms-animation-iteration-count:infinite;
     -o-animation-iteration-count:infinite;
        animation-iteration-count:infinite;
/*animation-delay*/
-webkit-animation-delay:1s;
   -moz-animation-delay:1s;
    -ms-animation-delay:1s;
     -o-animation-delay:1s;
        animation-delay:1s;
}
@keyframes move{
0%  { top: 0px; }
20% { top: -50px; }
40% { top: -100px; }
60% { top: -150px; }
80% { top: -200px; }
}

另外,知道如何让所有文本垂直对齐吗?

4

2 回答 2

4

您还需要使用供应商特定的前缀@keyframes。它可以在Codepen中使用,因为它会检查您使用的浏览器并自动添加前缀。如果您检查了 codepen 输出,您会注意到。

@-webkit-keyframes move {
    0%  { top: 0px; }
    20% { top: -50px; }
    40% { top: -100px; }
    60% { top: -150px; }
    80% { top: -200px; }
}
@-moz-keyframes move {
    0%  { top: 0px; }
    20% { top: -50px; }
    40% { top: -100px; }
    60% { top: -150px; }
    80% { top: -200px; }
}
@-o-keyframes move {
    0%  { top: 0px; }
    20% { top: -50px; }
    40% { top: -100px; }
    60% { top: -150px; }
    80% { top: -200px; }
}
@keyframes move {
    0%  { top: 0px; }
    20% { top: -50px; }
    40% { top: -100px; }
    60% { top: -150px; }
    80% { top: -200px; }
}
于 2014-03-04T15:09:18.407 回答
0

Codepen 工作,您的网站没有。

您还需要使用关键帧的前缀版本:

@-webkit-keyframes

完整参考https://developer.mozilla.org/en-US/docs/Web/CSS/@keyframes

于 2014-03-04T14:57:18.623 回答