如何让大图不滚动?

发布于 2024-11-15 09:13:38 字数 575 浏览 3 评论 0原文

我有一个 jquery 循环幻灯片,可以滑动 3 张大照片,位于其余内容的后面。工作正常,但问题是,如果我将窗口大小调整为小于照片的宽度(1400)或高度(900),则会出现滚动条。如何使滚动消失或如何使图像“表现”得像背景图像......抱歉造成混乱,希望你能理解我。

HTML:

<div class="slideshow"> 
    <img src="images/temp-bg.jpg" width="1400" height="900" /> 
    <img src="images/temp-bg2.jpg" width="1400" height="900" /> 
    <img src="images/temp-bg3.jpg" width="1400" height="900" /> 
</div> 

CSS:

.slideshow {
    position:absolute;
    top:0;
    left:0;
    z-index:-999;
}

谢谢, 克里斯

I have a jquery cycle slideshow that slides through 3 big photos and is behind the rest of the content. Works fine but the problem is that if I resize the window to less than the width (1400) or height (900) of the photos the scrollbar appears. How to make the scroll disappear or how to make the images "act" like background-images... Sorry about the confusion, hope you can understand me.

HTML:

<div class="slideshow"> 
    <img src="images/temp-bg.jpg" width="1400" height="900" /> 
    <img src="images/temp-bg2.jpg" width="1400" height="900" /> 
    <img src="images/temp-bg3.jpg" width="1400" height="900" /> 
</div> 

CSS:

.slideshow {
    position:absolute;
    top:0;
    left:0;
    z-index:-999;
}

Thank you,
Cris

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

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

发布评论

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

评论(1

み零 2024-11-22 09:13:38

您应该能够将高度和宽度设置为 100% 并设置 overflow:hidden

You should be able to set the height and width to 100% and set overflow:hidden

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