在线观看不卡亚洲电影_亚洲妓女99综合网_91青青青亚洲娱乐在线观看_日韩无码高清综合久久

鍍金池/ 問答/HTML5/ 為何animation-iteration-count: 1;不起作用

為何animation-iteration-count: 1;不起作用

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title></title>
    <style>
        div{
        width:200px;
        height:200px;
        background-color:#ff7448;
        margin:20px auto;
        animation: movediv 3s alternate   2s linear;
        animation-iteration-count: 1;
    }
    
    @keyframes movediv{
        from{}
        to{
            width:300px;
            height:300px;
            border-radius:50%;
        }
    }
    </style>
</head>
<body>
    <div></div>
    
</body>
</html>

為何無限次循環(huán)播放?

回答
編輯回答
懶洋洋

發(fā)現(xiàn)問題了
linux里面的firefox運(yùn)行沒有問題。
win xp里買年的firefox運(yùn)行,不支持。

2017年8月18日 12:19