无论如何,要使用 jQuery 在 body 元素上的大照片中添加幻灯片效果吗?

发布于 2024-11-01 15:32:40 字数 221 浏览 6 评论 0原文

我有一个网站,该网站在页面宽度约为 1060 像素的网站上使用大型背景照片(约 1200 像素宽)。为了防止出现水平滚动条,我需要在 body 元素上加载背景照片。该页面包含一个轮播,当它转换时,里面的文本会发生变化(根据单击的按钮从左到右/从右到左滑动),然后一旦完成,背景照片就会发生变化。

有没有办法使用 jQuery 将 body 元素中的背景照片从一侧滑动到另一侧?如果是这样,有人可以给我举个例子吗?

I have a site that uses large background photos (around 1200px wide) on a site that has a page width of around 1060px. In order to prevent horizontal scrollbars from appearing, I need to load the background photos on the body element. The page contains a carousel and when it transitions, the text inside changes (slides left to right / right to left depending on the button clicked) then once it's complete, the background photo changes.

Is there anyway to use jQuery to slide the background photo in the body element from one side to another? If so, can someone give me an example?

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

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

发布评论

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

评论(2

ゞ花落谁相伴 2024-11-08 15:32:40

您可以像这样对背景图像进行动画处理...

$('body').animate({ backgroundPosition: "-=900px" }, 3000);

演示: http://jsfiddle.net/wdm954/eC8vP/< /a>

有关 animate 的更多信息:http://api.jquery.com/animate/

You can animate the background image like so...

$('body').animate({ backgroundPosition: "-=900px" }, 3000);

Demo: http://jsfiddle.net/wdm954/eC8vP/

More on animate: http://api.jquery.com/animate/

缪败 2024-11-08 15:32:40

这个插件可能可以帮助你。

This plugin can probably help you out.

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