CSS3 过渡不适用于按钮
我有一个相对复杂的按钮,我使用 CSS3 对其进行样式设计,除了转换不起作用之外,它的外观和行为都符合我的预期。它应该在悬停等时褪色,但它不起作用,在 moz opera 和 chrome 中进行了测试,没有运气。
这是小提琴的链接 http://jsfiddle.net/dsyne/DpsuN/1/
任何帮助将不胜感激,我尝试过很多不同的事情。例如,重新排序堆栈。我不确定顺序对于转换是否重要?
编辑:链接错误抱歉
I have a relatively complex button that I'm styling with CSS3, it looks and behaves as I intended apart from the transitions are not working. It should fade on hover etc but it's just not working, tested in moz opera and chrome, no luck.
Here's a link to a fiddle http://jsfiddle.net/dsyne/DpsuN/1/
Any help would be appreciated, i've tried many different things. Re-ordering the stack for instance. I'm not sure if the ordering is important with transitions ?
edit:wrong link sorry
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
渐变还不直接支持过渡。您应该定义背景颜色,然后使用跨州相同的纯 alpha 渐变来添加阴影。
Gradients don't support transitions directly yet. You should define your background colors then use a pure alpha gradient that is the same across states to add shading.
使用 id 来指定转换属性而不是类。为我工作!
Use id to specify transition property instead of class. Worked for me!