jQuery fadeOut/fadeIn 效果帮助。 (jsfiddle)
我正在运行一个基本脚本来创建滑块效果。我将其设置为简单地切换元素。我不只是切换,而是希望创建淡出/淡入效果。我发现的文档似乎每个脚本都不同...是否有基本或初学者级别的方法可以将淡入淡出效果添加到预先存在的脚本中?先感谢您。
jsfiddle: http://jsfiddle.net/williamwong/865gG/1/
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
最简单的方法是使用 jquery 的 fadeIn() 和 fadeOut() 方法。
这些方法的文档(fadeIn()、fadeOut()) 有很好的例子。
编辑
以下是我将如何更改您的代码以使用它:
基本上,您需要等到 fadeOut 完成才能淡入下一个项目。除此之外,您的代码几乎相同。
更新了你的小提琴分支 - http://jsfiddle.net/9BQTH/2/
The simplest way is to use jquery's fadeIn() and fadeOut() methods.
The documentation for these methods(fadeIn(), fadeOut()) has great examples.
EDIT
Here's how I would alter your code to make use of it:
Basically, you want to wait until fadeOut is complete to fade in the next item. Other than that, your code is pretty much the same.
Updated fork of your fiddle - http://jsfiddle.net/9BQTH/2/
我的猜测是,您可以使用不透明度属性来使用 animate()、hide()、show() 函数。
My guess is that you could use the animate(), hide(), show() functions using opacity property.