1
A
回答
3
你也可以检查出JQuery UI,因为这可以让你过动画的颜色或阅读this article关于插件难忘的用户体验。
2
是什么样的动画真正的动画力量你在找什么?你可以slideDown(),slideUp()或使用animate()和定义自己的
0
可以在jQuery的执行多个动画真的很容易:
/*you can hide your item with the css property first*/
<style>
#id_of_what_want_to_animate{display:none;height:1px;}
</style>
然后用jQuery透露它
//target the item that triggers the animation
$('#clickthis').click(function() {
//when clicked animate whatever you want, the 5000 is the duration of the animation in
//milliseconds inside the curly braces you can animate css properties
$('#id_of_what_want_to_animate').animate({opacity: 1,height: '200px'},5000,function() {
//run something else when your animation complete.
});
});
你可以参考jQuery的详细的文档:
相关问题
- 1. 淡入淡出相关的div动画
- 2. DIV淡入动画
- 3. jQuery img src动画与淡入淡出
- 4. 淡出动画后删除div - javascript
- 5. wpf动画淡入淡出和淡出
- 6. 淡入淡出淡入淡出下一个div和动画中的子元素
- 7. jQuery动画淡入淡出
- 8. android:淡入淡出动画
- 9. 淡入淡出动画Swift
- 10. CSS3动画/淡入淡出
- 11. 淡入淡出动画UITableViewCell
- 12. CSS动画淡入淡出
- 13. 淡入淡出动画
- 14. 动画淡入淡出
- 15. 淡入淡出动画
- 16. CSS3淡入淡出动画
- 17. 淡入淡出动画(UIViewAnimation)
- 18. 动画UILabel淡入/淡出
- 19. 淡入淡出动画
- 20. NSGradient淡入淡出/动画
- 21. jQuery滚动到div上同时淡入淡出和动画
- 22. 如何移动和淡出与动画
- 23. 淡出DIV,并在下一个DIV与jQuery淡入淡出
- 24. jquery淡入淡出视差动画中的div
- 25. 如何使用淡入淡出动画添加(复制)div
- 26. EmberJS为DIV添加动画淡出和淡入操作事件
- 27. 在滚动div逐渐淡出淡出
- 28. 当动画结束时,淡出的CSS动画不会淡出
- 29. 使用jQuery动画与淡出效果
- 30. jquery淡出div与页面滚动
对你来说,什么是“真正的动画”? – balexandre 2009-05-06 11:58:24