我正在尝试使用this 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; }
}
另外,任何想法如何让所有文本垂直对齐?
答案 0 :(得分: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; }
}
答案 1 :(得分:0)
Codepen有效,您的网站没有。
您也需要使用关键帧的前缀版本:
@-webkit-keyframes
完整参考https://developer.mozilla.org/en-US/docs/Web/CSS/@keyframes