admin管理员组文章数量:1344238
I am trying to make a dropdown effect for one of my background images. I was able to do it using css3 but it's not plete.
The effect is supposed to be a curtain that drops down then sort of bounces back up a little. The problem with css3 is that I don't know how to do to transitions on the same property because the last one overrides the previous ones.
Here's my code:
ul#nav li a {
/* ADDS THE DROPDOWN CURTAIN TO THE LINKS BUT HIDDEN OFF SCREEN */
background: url(images/drape2.png) 0px -149px no-repeat;
/* CSS3 transitions */
-moz-transition: all 200ms ease-in-out;
-webkit-transition: all 200ms ease-in-out;
}
ul#nav li a:hover {
/* Action to do when user hovers over links */
background-position: 0px 0px; /* make drape appear, POOF! */
background-position: 0px -10px; /* make drape appear, POOF! */
}
Any help would be much appreciated.
I am trying to make a dropdown effect for one of my background images. I was able to do it using css3 but it's not plete.
The effect is supposed to be a curtain that drops down then sort of bounces back up a little. The problem with css3 is that I don't know how to do to transitions on the same property because the last one overrides the previous ones.
Here's my code:
ul#nav li a {
/* ADDS THE DROPDOWN CURTAIN TO THE LINKS BUT HIDDEN OFF SCREEN */
background: url(images/drape2.png) 0px -149px no-repeat;
/* CSS3 transitions */
-moz-transition: all 200ms ease-in-out;
-webkit-transition: all 200ms ease-in-out;
}
ul#nav li a:hover {
/* Action to do when user hovers over links */
background-position: 0px 0px; /* make drape appear, POOF! */
background-position: 0px -10px; /* make drape appear, POOF! */
}
Any help would be much appreciated.
Share asked Nov 26, 2011 at 2:41 Free LancerFree Lancer 1,0002 gold badges16 silver badges34 bronze badges 3- stackoverflow./questions/7825509/css3-chain-animations – Theo.T Commented Nov 26, 2011 at 2:50
- 3 What's the difference between an animation and a transition? – Free Lancer Commented Nov 26, 2011 at 2:58
- Ha, didn't even realise ! Well, just discovered something good here. webkit/blog/324/css-animation-2 – Theo.T Commented Nov 26, 2011 at 3:02
2 Answers
Reset to default 9You'll want to chain them with mas instead of a new line
For instance:
background-color 500ms linear, color 500ms linear;
Using cubic-bezier
like this:
cubic-bezier(0, 0.35, .5, 1.3)
You can make an animation go backwards—or bounce a little.
Demo (Only works in Firefox)
Source
Edit: I also made you a Webkit only option, I don't know how patible these two techniques are. It may also work in Firefox with the -moz
browser prefixes, but I haven't tested it. This one uses keyframe animation as opposed to transitions.
本文标签: javascriptCSS3 Multiple Transitions of the Same ElementStack Overflow
版权声明:本文标题:javascript - CSS3 Multiple Transitions of the Same Element - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743680080a2520975.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论