gpt4 book ai didi

css - 使用CSS调整浏览器窗口大小时如何使图像自动调整大小?

转载 作者:行者123 更新时间:2023-11-28 14:53:39 25 4
gpt4 key购买 nike

我希望在用户调整浏览器窗口大小时图像自动调整大小,当用户调整浏览器大小时我不希望图像丢失任何细节。我只想要分辨率 width:800px height:400px

我尽了最大努力到处搜索,但他们的解决方案对我不起作用,我也设置了宽度 100% 和最大宽度 100% 仍然我的网页不起作用。

如果有人愿意给我一些建议,我将不胜感激。谢谢。

请看我的代码。

/*slideshow*/
#slideshow {
width: 100%;
}

#slide1 {
background-image: url(https://preview.ibb.co/mV3TR7/1.jpg);
}

#slide2 {
background-image: url(https://preview.ibb.co/bSCBeS/2.jpg);
}

#slide3 {
background-image: url(https://preview.ibb.co/kgG9Yn/3.jpg);
}

.slide {
background-repeat: no-repeat;
background-position: center;
background-size: 800px 400px;
width: 100%;
height: 400px;
max-width: 100%;
max-height: 100%;
margin-top: 40px;
border: 1px solid;
<!DOCTYPE html>

<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title></title>
<link rel="stylesheet" type="text/css" href="index.css" />
</head>
<body>

<div id="slideshow">

<div id="slide1" class="slide">
<span class="slidecontain">SlideImage1</span>
</div>

<div id="slide2" class="slide">
<span class="slidecontain">SlideImage2</span>
</div>

<div id="slide3" class="slide">
<span class="slidecontain">SlideImage3</span>
</div>

</div>
<script src="jquery.js"></script>
<script src="index.js"></script>


</body>
</html>

最佳答案

将您的 .slide 设置为 background-size: cover

参见文档:https://www.w3schools.com/cssref/css3_pr_background-size.asp

你也可以把它放在background-position: center center;

为了使幻灯片与图片大小相同,您可以将填充底部设置为与图片的比例相同,例如:

.slide {
...
padding-bottom: 72%;
}

/*slideshow*/
#slideshow {
width: 100%;
}

#slide1 {
background-image: url(https://preview.ibb.co/mV3TR7/1.jpg);
}

#slide2 {
background-image: url(https://preview.ibb.co/bSCBeS/2.jpg);
}

#slide3 {
background-image: url(https://preview.ibb.co/kgG9Yn/3.jpg);
}

.slide {
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
width: 100%;
max-width: 100%;
max-height: 100%;
margin-top: 40px;
border: 1px solid;
padding-bottom: 72%;
}
<!DOCTYPE html>

<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title></title>
<link rel="stylesheet" type="text/css" href="index.css" />
</head>
<body>

<div id="slideshow">

<div id="slide1" class="slide">
<span class="slidecontain">SlideImage1</span>
</div>

<div id="slide2" class="slide">
<span class="slidecontain">SlideImage2</span>
</div>

<div id="slide3" class="slide">
<span class="slidecontain">SlideImage3</span>
</div>

</div>
<script src="jquery.js"></script>
<script src="index.js"></script>


</body>
</html>

关于css - 使用CSS调整浏览器窗口大小时如何使图像自动调整大小?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51296835/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com