[英]Slide up animation from line
你可以看看动画和变换
p { margin: 0; height: 2em; overflow: hidden; width: max-content; margin: 0 auto; background: linear-gradient( currentcolor,currentcolor) center 85%/ 80% 2px no-repeat } p+p { background: none; } p span { display: inline-block; transform: translatey(4em); animation: slide 0.5s forwards; } p+p span { transform: translatey(-4em); } @keyframes slide { to { transform: translatey(0em) } } /* demo */ body { background:#333; color: #eee; margin:0; min-height:100vh; display:flex; flex-direction:column; font-size:3vw; justify-content:center; } }
<p><span>Some text here to slide up</span></p> <p><span>Some text here to slide down</span></p>
声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.