html5 - css @keyframes 在qq或微信端不支持吗?

 疯子晨晨农_481 发布于 2022-11-01 18:00

在本地浏览器及微信开发工具上运行是可以使用的,但上传了之后,这段代码

.toolTip {

position: absolute;
bottom: 12px;
left: 50%;
transform: translateX(-50%);
color: #FF66CC;
animation: toolTip 1s linear infinite;
-webkit-animation: toolTip 1s linear infinite;
-moz-animation: toolTip 1s linear infinite;
-o-animation: toolTip 1s linear infinite;

}

@keyframes toolTip {

0% {
    bottom: 30px;
}
50% {
    bottom: 50px;
}
100% {
    bottom: 30px;
}

}

在QQ和微信端上就无法运行了,我用的是安卓系统,不知道iOS系统会不会也无法运行

特地来求助各位DaLao。

献上网址:http://520.52lcy.cn

1 个回答
  • 使用 @-webkit-keyframes 呢

    2022-11-02 14:01 回答
撰写答案
今天,你开发时遇到什么问题呢?
立即提问
热门标签
PHP1.CN | 中国最专业的PHP中文社区 | PNG素材下载 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有