gpt4 book ai didi

html - 如何使用 CSS 创建紧身胸衣效果?

转载 作者:太空宇宙 更新时间:2023-11-03 21:07:16 24 4
gpt4 key购买 nike

我想用 CSS 创建如下效果,最初,我想合并两个带圆 Angular 的矩形,但我不能那样使用,因为它是一个锐 Angular ,而不是圆 Angular ,请查看中的区域cirle,这是最难的部分。

enter image description here

所以我这样做:
1.创建一个圆 Angular 矩形作为轮廓。边框颜色为灰色。
2. 在矩形左侧的中心创建一个灰色的三 Angular 形。
3. 用白色创建另一个三 Angular 形来覆盖步骤2中的灰色三 Angular 形,稍微偏移一下,使它看起来像矩形的边框。

效果如下:

enter image description here

我的问题是:
1.如何添加正确的部分?似乎我只能在 CSS 选择器 :before 或 :after 中同时绘制一个形状。
2.如果我想添加边框阴影效果怎么办?如果我添加矩形的阴影,就会出现白色三 Angular 形,很难看。
3.或者有什么办法可以达到这个效果?

代码如下:

.triangle_left {
width: 600px;
height: 600px;
position: relative;
margin: 20px auto;
border: 2px solid #cccccc;
/* box-shadow: 0px 0px 8px 1px darkgrey; */
border-radius: 20px;
}

.triangle_left:before {
content: '';
width: 0;
height: 0;
border: 20px solid transparent;
border-left-color: #cccccc;
position: absolute;
left: 0;
top: 50%;
margin-top: -20px;
}

.triangle_left:after {
content: '';
width: 0;
height: 0;
border: 18px solid transparent;
border-left-color: white;
position: absolute;
left: -2px;
top: 50%;
margin-top: -18px;
}
<div class="triangle_left">

</div>

Try it here in JSFiddle

最佳答案

一个想法是使用渐变构建形状并依赖于drop-shadow filter

.box {
margin-top:50px;
border-radius:10px;
width:200px;
height:200px;
background:
/*the middle line */
repeating-linear-gradient(to right,gold 0px,gold 5px,transparent 5px,transparent 10px) center/calc(100% - 40px) 2px,
/*The background*/
linear-gradient(to bottom right,#fff 49%,transparent 50%) 100% calc(50% - 10px) / 20px 20px,
linear-gradient(to top right,#fff 49%,transparent 50%) 100% calc(50% + 10px) / 20px 20px,
linear-gradient(to bottom left ,#fff 49%,transparent 50%) 0 calc(50% - 10px) / 20px 20px,
linear-gradient(to top left ,#fff 49%,transparent 50%) 0 calc(50% + 10px) / 20px 20px,

linear-gradient(#fff,#fff) top right / 20px calc(50% - 20px),
linear-gradient(#fff,#fff) bottom right / 20px calc(50% - 20px),

linear-gradient(#fff,#fff) top left / 20px calc(50% - 20px),
linear-gradient(#fff,#fff) bottom left / 20px calc(50% - 20px),

linear-gradient(#fff,#fff) center/calc(100% - 40px) 100%;
background-repeat:no-repeat;
filter:drop-shadow(0 0 5px #000);
}

body {
background:pink;
}
<div class="box">
</div>

CSS transparent triangle with shadow

你也可以用 clip-path 来做,但是你需要一个额外的包装器来应用 drop-shadow 过滤器

.box {
margin-top: 50px;
border-radius: 10px;
width: 200px;
height: 200px;
background:
repeating-linear-gradient(to right, gold 0px, gold 5px, transparent 5px, transparent 10px) center/100% 2px no-repeat,
#fff;
clip-path:polygon(
0 0,100% 0,
100% calc(50% - 20px),calc(100% - 20px) 50%,100% calc(50% + 20px),
100% 100%, 0 100%,
0 calc(50% + 20px),20px 50%,0 calc(50% - 20px)
);
}

.drop {
filter: drop-shadow(0 0 5px #000);
}

body {
background: pink;
}
<div class="drop">
<div class="box">
</div>
</div>

关于html - 如何使用 CSS 创建紧身胸衣效果?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51364511/

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