滚动的完整背景图像

发布于 2024-11-09 05:25:43 字数 332 浏览 0 评论 0 原文

我正在使用超大( http://buildinternet.com/project/supersized/ )大小图像背景幻灯片,但我需要背景图像在用户向上/向下滚动以阅读文本时滚动。

我用作参考的网站是 http://www.samsung.com/latin/ 他们使用闪光灯作为背景幻灯片。

有没有办法用js达到同样的效果?

谢谢

I'm using supersized ( http://buildinternet.com/project/supersized/ ) for a full size image background slideshow, but I need the background image to scroll as the user scrolls up/down to read text.

The site i'm using as a reference is http://www.samsung.com/latin/
They used flash for the background slideshow.

Is there any way to achieve the same with js?

Thanks

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

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

发布评论

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

评论(3

耀眼的星火 2024-11-16 05:25:43

这可以解决问题,我自己使用它:

#supersized {
    position:absolute;
    top:0;
    left:0;
    }

按照其他人的建议使用 position:relative 不起作用,使用 position 也不起作用:绝对本身。

This will do the trick, I'm using it myself:

#supersized {
    position:absolute;
    top:0;
    left:0;
    }

Using position:relative as others have suggested won't work, nor will using position:absolute by itself.

我的鱼塘能养鲲 2024-11-16 05:25:43

我对 Supersized 不太感兴趣,但看看演示网站 ,这似乎是一个简单的 CSS 问题。尝试将 #supersizedposition:fixed; 更改为 position:relative;

I am not filmier with Supersized, but taking a look at the demo site, it appears to be a simple CSS problem. Try changing #supersized from position: fixed; to position:relative;

池予 2024-11-16 05:25:43

如果将 #superzishedposition:fixed; 更改为 position:absolute;,您应该会得到一个滚动图像。

If you change #superzised from position:fixed; to position:absolute; you should get a scrolling image.

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