#name
{
width: 100px;
height: 20px;
background-color: lightgrey;
}

<div id="name">
I am Batman I am BatmanI am Batman I am Batman
</div>
&#13;
我不知道如何解释这个问题,但我在div
内有无限次迭代的名称幻灯片内容。
这是我尝试的但是没有效果。
-webkit-iteration: infinite;
答案 0 :(得分:2)
你有正确的想法,这是一个很好的开始。您要找的是@keyframes
。使用关键帧,您可以创建一个函数名称,并分别使用from
和to
指定起始值和结束值。
animation
属性是在一行中声明多个动画属性的简写。它可以采取其他的东西
move
另外,如果你没有做速记,请记住它是animation-iteration-count
而不是animation-iteration
。
浏览器支持
<强>段强>
#name {
width: 100px;
height: 20px;
background-color: lightgrey;
animation: move 2s infinite;
}
@keyframes move {
from { margin-left: 0px; }
to { margin-left: 100px; }
}
&#13;
<div id="name">
I am Batman I am BatmanI am Batman I am Batman
</div>
&#13;