css animation动画
一、实现效果:从左侧至右侧2s钟缓慢滑出。

二、详细代码:
.specificLeft {
position: absolute;
background-color: teal;
/* 调用动画 */
animation-name: leftPanel;
/* 持续时间 */
animation-duration: 2s;
@keyframes leftPanel {
0% {
left: -350px;
}
100% {
left: 0px;
}
}
}
参考:https://blog.csdn.net/weixin_43742708/article/details/114926809

浙公网安备 33010602011771号