gpt4 book ai didi

html - 可以使用 css 将图像反射(reflect)为阴影吗?

转载 作者:搜寻专家 更新时间:2023-10-31 21:57:32 27 4
gpt4 key购买 nike

我见过很多这种风格的设计:

Image Reflection Shadows

显示反射的图像示例:

Cropped to pertinent part of image我只是想知道这是否有可能编码。我一直在寻找一种方法来做到这一点,但没有找到运气。我只是想要一些许可。是为了好看还是有可能?

最佳答案

是的!您可以使用 CSS 和 filter: blur();

来做到这一点

演示 http://jsbin.com/nidekeyajo/edit?html,css,js,output

* {
box-sizing: border-box;
margin: 0;
}

img {
height: auto;
max-width: 100%;
}

.wrap {
margin: 0 auto;
max-width: 400px;
position: relative;
}

.image {
display: block;
position: relative;
z-index: 2;
}

.shadow {
bottom: -30px;
filter: blur(20px);/* this is the magic part */
height: 100%;
left: 0;
position: absolute;
transform: scale(0.95);
width: 100%;
z-index: 1;
}
<div class="wrap">
<img class="image" src="https://lorempixel.com/800/450/nature/3/" alt="rocky shore">
<img class="shadow" src="https://lorempixel.com/800/450/nature/3/" alt="">
</div>

关于html - 可以使用 css 将图像反射(reflect)为阴影吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40918691/

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