gpt4 book ai didi

html - 在图像上淡入的点图案叠加

转载 作者:行者123 更新时间:2023-12-02 06:13:05 25 4
gpt4 key购买 nike

我想要一个覆盖图像的点图案,但我需要它在右侧是透明的,我需要它在左侧变得不透明/可见 - 就像使用渐变来显示图案一样。

<html>
<head>

<style>
.image-container {
display: block;
background: url(https://cdn.getyourguide.com/img/location_img-59-1969619245-148.jpg) no-repeat;
background-size: cover;
height: 400px;
width: 837px;
}

.dot-overlay {
background: url(square-pattern.svg);
width: 100%;
height: 400px;
}
</style>

</head>
<body>

<div class="image-container">
<img class="dot-overlay">
</div>

</body>
</html>

结果

这就是我想要达到的结果

enter image description here

编辑:抱歉,我忘了提到我需要这个解决方案来响应(即使我的示例中的图像是固定大小的)并且最好我还希望图案点在图像是时保持相同的大小调整大小。

值得庆幸的是,Temani Afif 解决方案可以解决这个问题,也可以控制梯度!此外,为了使点更方形,将每个百分比更改为 50%,例如径向渐变(最远侧,蓝色 50%,透明 50%)

最佳答案

您可以通过 CSS 使用 radial-gradient 来实现点和 mask 来实现渐变效果:

.image-container {
background: url(https://cdn.getyourguide.com/img/location_img-59-1969619245-148.jpg) no-repeat;
background-size: cover;
height: 300px;
width: 600px;
position:relative;
}
.image-container:before {
content:"";
position:absolute;
top:0;
right:0;
left:0;
bottom:0;
background: /* v-- Change to adjust the distance between circles */
radial-gradient(farthest-side,blue 80%,transparent 82%)
0 0/
10px 10px; /* Change to adjust the size */

-webkit-mask:linear-gradient(to right,#fff,transparent);
mask:linear-gradient(to right,#fff,transparent);
}
<div class="image-container"></div>

关于html - 在图像上淡入的点图案叠加,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58945485/

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