html5 - css @keyframes 在qq或微信端不支持吗?
迷茫
迷茫 2017-04-17 14:20:18
0
1
1308

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

.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 呢

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!