对幻灯片 div 中的图像应用单独的效果

发布于 2024-09-28 10:51:23 字数 267 浏览 1 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

终弃我 2024-10-05 10:51:23

您想按单个图像滑动,而不是按 3 个图像组滑动?

只需在每个要滑动的图像上设置类即可。如果这不起作用,请将每个图像放入其自己的 div 中,并让每个 div 都有幻灯片类。

<div class="slideshow">
  <img src="whatever" class="slide" />
  <img src="whatever" class="slide" />
  <img src="whatever" class="slide" />
</div>

或者

<div class="slideshow">
  <div class="slide"><img src="whatever" /></div>
  <div class="slide"><img src="whatever" /></div>
  <div class="slide"><img src="whatever" /></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.

<div class="slideshow">
  <img src="whatever" class="slide" />
  <img src="whatever" class="slide" />
  <img src="whatever" class="slide" />
</div>

or

<div class="slideshow">
  <div class="slide"><img src="whatever" /></div>
  <div class="slide"><img src="whatever" /></div>
  <div class="slide"><img src="whatever" /></div>
</div>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文