对幻灯片 div 中的图像应用单独的效果
http://www.malsup.com/jquery/cycle/div.html
这个示例通过切换整个 .slideshow.slide div 来工作,我想像示例一样继续切换这个块,但我想将切换效果(fx)单独应用于图像,我该怎么做?
就像当我单击幻灯片 2 时,当前幻灯片中的 3 个图像会产生一些效果,并且您将获得幻灯片 2 结果
http://www.malsup.com/jquery/cycle/div.html
this example works by switching the whole .slideshow.slide div, i want to keep switching this block like the example BUT i want to apply the switch effect (the fx) to images individually, how can i do that?
like when i click on slide 2 the 3 images from the current slide get some effect and you get the slide 2 results
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您想按单个图像滑动,而不是按 3 个图像组滑动?
只需在每个要滑动的图像上设置类即可。如果这不起作用,请将每个图像放入其自己的 div 中,并让每个 div 都有幻灯片类。
或者
You want to slide by individual images, not by groups of 3?
Just set the class on each image to slide. If that doesn't work, put each imagine in its own div and have each div have the slide class.
or