【发布时间】:2011-06-18 09:26:27
【问题描述】:
如何让 CSS 动画与 JavaScript onClick 一起播放?我目前有:
.classname {
-webkit-animation-name: cssAnimation;
-webkit-animation-duration:3s;
-webkit-animation-iteration-count: 1;
-webkit-animation-timing-function: ease;
-webkit-animation-fill-mode: forwards;
}
@-webkit-keyframes cssAnimation {
from {
-webkit-transform: rotate(0deg) scale(1) skew(0deg) translate(100px);
}
to {
-webkit-transform: rotate(0deg) scale(2) skew(0deg) translate(100px);
}
}
如何应用 onClick?
【问题讨论】:
标签: javascript css animation click onclick