有沒有辦法讓一個CSS函數動態?是否可以更改CSS動畫寬度javascript?
.test2
{
width:200px;
height: 90%;
-webkit-animation:myfirst2 linear; /* Safari and Chrome */
-webkit-animation-duration: 10s;
}
@-webkit-keyframes myfirst2 /* Safari and Chrome */
{
from { height: 0%; } <--this must be dynamic
to { height: 90%; } <--this must be dynamic
}
我想from { height: 0%; }
和to { height: 90%; }
動態使用JavaScript。
這可能嗎?
你可以做到這一點btw – tkone 2012-03-21 11:34:54
這看起來是你想要的:http://stackoverflow.com/questions/2495829/dynamically-modify-webkit-animation-with-javascript – callumacrae 2012-03-21 11:36:03
是的,謝謝Callum Macrae。這是我正在尋找的解決方案。 – robind38 2012-03-21 12:43:14