gpt4 book ai didi

HTML 页面分为两个 hlaves - 两个没有 JS 的全屏响应链接图像

转载 作者:行者123 更新时间:2023-11-28 09:59:59 24 4
gpt4 key购买 nike

我正在尝试将主页分成两半。该页面应类似于 this page - 两张图片应该是响应式的,它们应该覆盖全屏,两边没有空白,图片应该是可点击的。如果它可以不用 JavaScript 只用 HTML 和 CSS 编写,我将不胜感激。

我现在得到的是:

<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="body">
<div id="production" class="column half">
<h1>production</h1>
</div>
<div id="label" class="column last">
<h1>label</h1>
</div>
</div>
</body>
</html>

和CSS

.body { overflow: hidden; margin: 0; width: 100%; height: 100%;}
.column { float: left; }
.half { height: 100%; width: 50%; }
.last { height: 100%; float: none; width: auto; }
#production { background-image:url(bgprod.jpg); }
#label { background-image:url(bglabel.jpg); }

感谢您的帮助。

最佳答案

我快速草拟了一些您可以使用的东西。鉴于图像与屏幕尺寸成比例,这满足您的要求。

html:

<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="container">
<div class="col-half">
<img class="responsive-image" src="test.jpg" />
</div>
<div class="col-half">
<img class="responsive-image" src="test.jpg" />
</div>
</div>
</body>
</html>

还有CSS:

html, body {
margin: 0 0 0 0;
padding: 0 0 0 0;
}

.container {
width: 100%;
height: 100%;
}

.col-half {
margin: 0;
padding: 0;
float: left;
max-width: 50%;
height: 100%;
}

.responsive-image {
max-height: 100%;
max-width: 100%;
height: auto;
width: auto;
}

关于HTML 页面分为两个 hlaves - 两个没有 JS 的全屏响应链接图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24747068/

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