gpt4 book ai didi

html - 如何让我的 Logo 在滚动时滚动?

转载 作者:太空宇宙 更新时间:2023-11-04 00:36:24 25 4
gpt4 key购买 nike

我正在练习建立网站。在网站上:http://auchevaldiner.com/new-york/你可以看到标志在左下角,当你滚动它时它会随着你一起滚动我必须做什么才能让它像那样工作?

我的代码

body {
margin: 0px;
}

.Main {
font-size: 0px;
}

.mtx {
margin: 0px;
padding: 0px;
font-family: sans-serif;
position: fixed;
top: 50%;
transform: translateY(-50%);
white-space: nowrap;
font-size: 5em;
color: black;
left: 550px;
}

.logo_float {
position: absolute;
bottom: 15px;
left: 15px;
width: 200px;
z-index: 1000;
}
<!DOCtype HTML>

<head>
<html lang="en">
<meta charset="utf-8">
<link rel="stylesheet" href="AU.css">
<title>Au Cheval</title>
<link rel="stylesheet" href="au.css">
<link rel="shortcut icon" type="image/jpg" href="favicon.jpg">

</head>

<body>

<div class="Main">
<img src="au.images/au.jpg" width="1423px" height="950px" />
<img src="au.images/au2.jpg" width="1423px" height="950px" />
<img src="au.images/au3.jpg" width="1423px" height="950px" />
<img src="au.images/au4.jpg" width="1423px" height="950px" />
<img src="au.images/au5.jpg" width="1423px" height="950px" />
<img src="au.images/au6.jpg" width="1423px" height="950px" />
<img src="au.images/au7.jpg" width="1423px" height="950px" />
<img src="au.images/au8.jpg" width="1423px" height="950px" />
<img src="au.images/au9.jpg" width="1423px" height="950px" />
<img src="au.images/au10.jpg" width="1423px" height="950px" />
<img src="au.images/au11.jpg" width="1423px" height="950px" />
</div>

<a href="AU.html" class="logo_float">
<img src="au.images/au12.jpg" width="200px" height="200px">
</a>

</body>

</html>

这就是我在滚动时尝试滚动的内容 <a href="AU.html" class="logo_float" >

最佳答案

你给它 position: fixed 然后将它定位到左下角,即 left: 0;底部:0

https://developer.mozilla.org/en-US/docs/Web/CSS/position

关于html - 如何让我的 Logo 在滚动时滚动?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59329614/

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