Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有这个小提琴。根据这个小提琴,当class='hide'添加到任何跨度时,它应该是动画的,但是它不能很好地工作。我想在添加 a 时class='hide'为跨度设置动画。它应该在更改宽度时进行动画处理。
class='hide'
这是因为您将其定义width: auto为动画的帧之一。CSS 动画大多只适用于固定值。
width: auto
例如尝试设置width: 100px并检查它。
width: 100px
http://jsfiddle.net/MhJ2Y/3/
对此的解决方案可能是在文档加载时通过 jQuery 将宽度设置为固定值。