$('.edit-ele-box').css({
'-webkit-animation' : 'fadeIn 2s ease 0s 1 both'
})
[<p class="edit-ele-box no-win" bd-width="0" style="border-width: 0px; animation: fadeIn 2s ease 0s 1 both;">…</p>]
没改成webkit
$('.edit-ele-box')[0].style['webkitAnimation'] = 'fadeIn 2s ease 0s 1 both'

原生也没有改成webkit
@-webkit-keyframes fadeIn {
0% {
opacity: 0
}
100% {
opacity: 1
}
}
@keyframes fadeIn {
0% {
opacity: 0
}
100% {
opacity: 1
}
}
这样写在安卓微信显示不了动画。
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
用类名控制动画播放呗