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.
如何使用 jQuery 和/或 CSS 实现增长/收缩动画?当您单击按钮时,我可以想到一个示例Join Now。
Join Now
我查看了animate.css但他们没有提供这样的动画。
演示- 使用 CSS3transition-duration( W3Schools ) 和transform:scale(X,Y);( W3Schools ) 的解决方案。
transition-duration
transform:scale(X,Y);
更新:
DEMO - 更进一步,不仅仅是在动画末尾opacity:0;添加display:none;(通过 jQuery.hide()
opacity:0;
display:none;
.hide()