在一个布局设置中如何能够让图片实现自适应显示?我们就来说说在“css中的图片怎么自适应?图片自适有哪些方法?”这个问题吧!
1.首先我们创建一个 .html文件在里面放入我们的一个图片,代码如下;
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>title</title>
<link rel="stylesheet" href="css/ZSY_test.css" />
</head>
<body>
<div class="wrapper">
<!--背景图片-->
<div id="web_bg"
style="background-image: url(bootstrap-5.0.1/site/content/docs/5.0/examples/features/unsplash-photo-2.jpg)">
</div>
<!--其他代码 ... -->
</div>
</body>
</html>
2.创建 .css文件,我们通过在css文件中设置样式使得我们可以得到想要的自适应效果代码如下:
#web_bg {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
min-width: 1000px;
z-index: -10;
zoom: 1;
background-color: #fff;
background-repeat: no-repeat;
background-size: cover;
-webkit-background-size: cover;
-o-background-size: cover;
background-position: center 0;
}
我们通过这些代码中就可以实现自适应的图片,而且在css文件的代码中,position: fixed;
top: 0;
left: 0;
这个样式是为了让我们的盒子就是 div 固定在屏幕的最上方和最左方。那么固定完成之后我们通过width: 100%;
height: 100%;
min-width: 1000px;
background-repeat: no-repeat;
这串代码使得我们的图片可以实现和屏幕一样大小不会因为拖动或者缩小从而不能实现我们的一个平铺的效果;而min-width
是为了实现让屏幕宽度在1000px以内时,div的大小保持不变,也就是说在这种情况下,缩放屏幕宽度时,图片不要缩放(只有在1000px以内才有效)。
总结:
以上就是一个有关于“css图片怎么自适应?图片自适有哪些方法?”这个问题小编分享的案例和代码希望对你有所帮助,更多有关于学习css的内容我们都可以在w3cschool中进行学习和了解。