亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

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

在本地瀏覽器及微信開發(fā)工具上運(yùn)行是可以使用的,但上傳了之后,這段代碼

.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和微信端上就無法運(yùn)行了,我用的是安卓系統(tǒng),不知道iOS系統(tǒng)會不會也無法運(yùn)行

特地來求助各位DaLao。

獻(xiàn)上網(wǎng)址:http://520.52lcy.cn

迷茫
迷茫

業(yè)精于勤,荒于嬉;行成于思,毀于隨。

reply all(1)
洪濤

How about using @-webkit-keyframes

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template