【发布时间】:2019-04-23 16:40:06
【问题描述】:
我正在尝试使用 CSS 中的动画属性将 div 从左向右移动。但是代码不起作用。
我是 CSS 中动画属性的新手。我参考了 W3Schools 和 StackOverFlow 中的一些文章,但仍然没有成功。
#title {
font-size: 8.5em;
font-weight: bold;
color: goldenrod;
animation: move 3s ease;
animation-direction: normal;
}
@keyframes move {
from {
left: 0;
}
to {
left: 200px;
}
}
<div id="title">Soy Boos</div>
Soy Boos 这个词应该从左向右移动
【问题讨论】:
标签: html css css-animations