.star1{
animation:star 1.5s ease infinite;
animation-play-state:running;
}
@keyframes star{
0%{
opacity:0;
}
100%{
opacity:1;
}
}
我调用的star1 但是在安卓版的微信里,就不会闪烁,只有苹果支持,为什么呢??哪里不对呢?
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
添加
webkit前缀使用
prefixfree或者sass、less等编译也不需要自己写前缀了。添加webkit前缀
在webkit内核中是测试功能,需要使用webkit前缀
把这个加到你的代码里,就不用写前缀了,懒人方法
.star1{
animation:star 1.5s ease infinite;
animation-play-state:running;
-webkit-animation:star 1.5s ease infinite;
-webkit-animation-play-state:running;
}
@keyframes star{
0%{
}
100%{
}
}
@-webkit-keyframes star{
0%{
}
100%{
}
}