作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想从当前位置开始动画(第一次)。
openAnimation 从 A 点到 B 点, closeAnimation 从 B 点到 A 点。
所以,在页面加载时,动画应该在 B 点。
但是当我第一次更改类(class)时,div 从 A 点开始。
@-webkit-keyframes openAnimation
0%
-webkit-transform: translateX(300px)
100%
-webkit-transform: translateX(0px)
@-webkit-keyframes closeAnimation
0%
-webkit-transform: translateX(0px)
100%
-webkit-transform: translateX(300px)
-webkit-transform-origin: 100% 50%
-webkit-animation: openAnimation 1s both ease-in
-webkit-transform-origin: 100% 50%
-webkit-animation: closeAnimation 1s both ease-in
最佳答案
您可能想要 transition
,不是 animation
.例如,参见 http://jsfiddle.net/g9dn1a09/
基本上你想要以下CSS:
.box {
transition: transform 1s;
}
.close {
transform: translateX(300px);
}
.open {
transform: translateX(0px);
}
请注意,您要
transition
使用始终应用的选择器定义。如果您更改属性
transition
使用
.close
或
.open
过渡(动画)中间的类选择器看起来很糟糕。
关于css - 如何从当前位置开始一个 css 动画,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21287052/
我是一名优秀的程序员,十分优秀!