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

posted @ 2023-08-21 17:30  ouousan  阅读(19)  评论(0)    收藏  举报