我制作了这个CSS打字机动画,但是,我无法使它响应。
下面是我的代码:
HTML:
<div class="animation">
<p>CRISTIANO RONALDO</p>
</div>CSS:
.animation p{
color: #D64933;
font-family: 'Lato', cursive;
font-size: 50px;
white-space: nowrap;
overflow: hidden;
width: 30em;
animation: title 7s steps(70, end);
margin-bottom: 40px;
}
@keyframes title{
from { width: 0; opacity: 0.0;}
to { opacity: 1.0; }
} 我希望动画从页面的中心开始,并且响应。对如何实现这一目标有任何想法吗?
链接到CodePen
https://stackoverflow.com/questions/44413238
复制相似问题