2017-07-21 26 views

回答

1

有在設置動畫你問路沒有問題:

@keyframes example { 
 
    0% {height: 0px;} 
 
    100% {height: 100%;} 
 
} 
 

 
.container { 
 
    height: auto; 
 
    animation: example 2s infinite; 
 
    background-color: lightgreen; 
 
    width: 100px; 
 
} 
 

 
html, body { 
 
    height: 100%; 
 
}
<div class="container"></div>

0

我爲你所問的很迷茫,但是這是我愚蠢的假設。我假設你是問,如果你能在@keyframes用%的單位。

是的。您可以在CSS關鍵幀中使用百分比。