javascript/jquery:寻找图像淡入淡出脚本
我正在寻找一个轻量级脚本(首选纯javascript) - 它应该用于将一系列图像平滑地淡入彼此(= image-carousel)。 它还应该可以运行多个实例(因此它应该是一个原型脚本), 例如: - 网站横幅:3 张图像相继褪色 - 主要内容:3 个画廊,每个画廊有 3-5 张褪色图像,
有什么建议用于该目的使用哪个脚本?
谢谢!
i'm looking for a lightweight script (pure javascript preferred) - it should be for smoothly fading a sequence of images into each other (=image-carousel).
it should also be possible to run several instances (so it should be a prototype script),
like for example:
- site banner: fading 3 images after each other
- main content: 3 galleries, each fading 3-5 images
any recommendations which script to use for that purpose?
thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您好,我编写了一个简单的脚本,它使用 jQuery .fadeOut() 和 .fadeIn() 方法以及几行 html 和 css。通过编号为 1 到 n 的图像元素的 id,算法可以轻松地迭代图像,并在到达最后一个图像时重新开始。它可以很容易地进行调整,使转换在一定时间延迟后自动发生,而不是通过单击按钮触发。让我知道这是否有帮助。这是代码:
Hi I've written a simple script which makes use of the jQuery .fadeOut() and .fadeIn() methods along with a few lines of html and css. With the ids for the image elements numbered 1 to n the algorithm can easily iterate through the images and start again when it gets to the last image. It could be easily adapted to make the transitions occur automatically after a certain time delay instead of firing on a button click. Let me know if this helps. Here's the code:
我使用过 jQuery CrossSlide 插件,效果很好。
I've used the jQuery CrossSlide plugin and it works well.