问题模块 框架类型 问题类型 终端类型 操作系统 微信版本 基础库版本
框架 微信小程序 Bug 客户端 iOS 6.6.6 1.9.94
首次扫码预览的时候动画异常,关闭微信小程序再次扫码预览动画正常,请问这是什么问题?
代码片段
.loading text { display: inline-block; width: 8px; margin: 0 5rpx; height: 100%; border-radius: 4px; background: lightgreen; -webkit-animation: load 1s ease infinite; animation: load 1s ease infinite; } @keyframes load { 0%, 100% { height: 40px; width: 8px; margin: 0 5rpx; background: lightgreen; } 50% { height: 70px; margin: -15px 5rpx; background: lightblue; } } .loading .text2 { -webkit-animation-delay: 0.2s; animation-delay: 0.2s; } .loading .text3 { -webkit-animation-delay: 0.4s; animation-delay: 0.4s; } .loading .text4 { -webkit-animation-delay: 0.6s; animation-delay: 0.6s; } .loading .text5 { -webkit-animation-delay: 0.8s; animation-delay: 0.8s; }