滚动的完整背景图像
我正在使用超大( http://buildinternet.com/project/supersized/ )大小图像背景幻灯片,但我需要背景图像在用户向上/向下滚动以阅读文本时滚动。
我用作参考的网站是 http://www.samsung.com/latin/ 他们使用闪光灯作为背景幻灯片。
有没有办法用js达到同样的效果?
谢谢
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这可以解决问题,我自己使用它:
按照其他人的建议使用 position:relative 不起作用,使用 position 也不起作用:绝对本身。
This will do the trick, I'm using it myself:
Using position:relative as others have suggested won't work, nor will using position:absolute by itself.
我对 Supersized 不太感兴趣,但看看演示网站 ,这似乎是一个简单的 CSS 问题。尝试将
#supersized
从position: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
fromposition: fixed;
toposition:relative;
如果将
#superzished
从position:fixed;
更改为position:absolute;
,您应该会得到一个滚动图像。If you change
#superzised
fromposition:fixed;
toposition:absolute;
you should get a scrolling image.