<div class='slide-left'></div>
.slide-left {
animation: bounceInLeft 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0s 1 alternate forwards;
-webkit-animation: bounceInLeft 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0s 1 alternate forwards;
/*Safari and Chrome*/
}
@keyframes bounceInLeft {
0% {
opacity: 0;
transform: translate3d(-3000px, 0, 0);
}
60% {
opacity: 1;
transform: translate3d(25px, 0, 0);
}
75% {
transform: translate3d(-10px, 0, 0);
}
90% {
transform: translate3d(5px, 0, 0);
}
100% {
transform: none;
}
}
动画效果:css模块左滑入显示或者右边滑入显示
最新推荐文章于 2024-07-31 16:59:37 发布
本文探讨了如何使用CSS实现模块内容的左右滑动显示效果,适用于前端开发中的交互设计,通过实例代码详细解析了动画过程,提升用户体验。
摘要由CSDN通过智能技术生成