jQuery 循环插件

发布于 2024-09-06 00:44:56 字数 184 浏览 0 评论 0原文

你知道为什么 jQuery 循环插件在滑动图像时会破坏背景图像居中吗? (没有激活插件,它可以正常工作)

这是一个 我的页面演示(尝试调整大小窗口或缩小并看看我的意思 - 背景图像被裁剪)

Do you have any idea why jQuery cycle plugin breaks backgorund image centering when sliding images? (without the plugin activated it works okay)

Here is a demo of my page (try to resize the window or zoom out and see what I mean - the background image gets cropped)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

叫思念不要吵 2024-09-13 00:44:56

Cycle 插件设置您在加载时循环的 div 的宽度,并且不考虑调整大小。 Cycle 有一个 destroy 方法。您应该能够循环调用 destroy 并在窗口调整大小事件中重新创建它。

http://jquery.malsup.com/cycle/options.html

$(window).resize(function() {
  $('#home #background').cycle('destroy');
  $('#home #background').cycle({
      random: 1
  }); 
});

The cycle plugin sets the width of the divs you are cycling on load, and doesn't account for a resize. Cycle has a destroy method. You should be able to call destroy on cycle and recreate it on a window resize event.

http://jquery.malsup.com/cycle/options.html

$(window).resize(function() {
  $('#home #background').cycle('destroy');
  $('#home #background').cycle({
      random: 1
  }); 
});
花海 2024-09-13 00:44:56

添加此样式可以修复它:

#background div { width: 100% !important }

Adding this style fixes it:

#background div { width: 100% !important }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文