gpt4 book ai didi

html - React JS 编辑图像叠加在 img html 标签上

转载 作者:太空狗 更新时间:2023-10-29 15:58:43 26 4
gpt4 key购买 nike

类似于 facebook 的 img 标签,当您将鼠标悬停在您的个人资料图片上时,这个小叠加层会出现在顶部,询问您是否要编辑照片。我有悬停功能,但我不知道如何获得叠加层。我正在使用 img 标签,因为图片来自 URL

最佳答案

这是一个例子:

<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
.container {
position: relative;
width: 50%;
}

.image {
opacity: 1;
display: block;
width: 100%;
height: auto;
transition: .5s ease;
backface-visibility: hidden;
}

.middle {
transition: .5s ease;
opacity: 0;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
text-align: center;
}

.container:hover .image {
opacity: 0.3;
}

.container:hover .middle {
opacity: 1;
}

.text {
background-color: #4CAF50;
color: white;
font-size: 16px;
padding: 16px 32px;
}
</style>
</head>
<body>

<div class="container">
<img src="https://www.w3schools.com/howto/img_avatar.png" alt="Avatar" class="image" style="width:100%">
<div class="middle">
<div class="text">John Doe</div>
</div>
</div>

</body>
</html>

引用:w3schools

关于html - React JS 编辑图像叠加在 img html 标签上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52463208/

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