好的,所以在HTML中我有一个带有前后伪元素的div标签。这是我的CSS:
.divClass{
background: #41423D;
height:30px;
}
.divClass:before{
content: '';
line-height: 0;
font-size: 0;
width: 0;
height: 0;
border-width :15px 7px 15px 7px;
border-color: transparent #41423D #41423D transparent;
border-style:solid;
position: absolute;
top: 0;
left: -14px;
}
.divClass:after{
content: '';
line-height: 0;
font-size: 0;
width: 0;
height: 0;
border-width :15px 7px 15px 7px;
border-color: transparent transparent #41423D #41423D;
border-style:solid;
position: absolute;
top: 0;
right: -14px;
}
所以,在设计中它变成了这样:
___
/ \
现在我需要的是前后伪元素的阴影,它们是div两侧的2个三角形。伪元素的宽度和高度为0,因此使用box-shadow有点棘手。
我需要三角形的阴影。那么,我该怎么办?
答案 0 :(得分:0)
您可以使用unicode字符:▲来制作三角形。
在其上应用文字阴影。
如果三角形的形状不符合您的要求,您可以使用transform: rotate();
或transform: skewX();
或两者进行调整。
这有点棘手而且不完美但它可以工作:
span {
display: inline-block;
font-size: 70px;
transform: skewX(29.5deg);
color: red;
text-shadow: 2px 2px 4px gray;
}
<span>▲</span>
还有一些其他的可能性,都在CSS Tricks帖子中描述,所以如果你想要检查它:
https://css-tricks.com/triangle-with-shadow/
如果认为您也可以查看filter: drop-shadow()
。如果您不需要支持所有浏览器,它可能适合您...
修改强>
根据css技巧帖子,你不能那样做吗?
.triangle-with-shadow {
transform: rotate(-45deg);
width: 100px;
height: 100px;
position: relative;
overflow: hidden;
box-shadow: 0 20px 10px -17px rgba(0, 0, 0, 0.5);
}
.triangle-with-shadow:after {
content: "";
position: absolute;
width: 50px;
height: 50px;
background: #999;
transform: rotate(45deg); /* Prefixes... */
top: 75px;
left: 25px;
box-shadow: -1px -1px 10px -2px rgba(0, 0, 0, 0.5);
}
<div class="triangle-with-shadow"></div>
另一种可能性,如果你只想要你描述的形状是使用透视:
.shape {
background: #41423D;
width: 150px;
height: 150px;
margin: 20px auto;
transform-origin:50% 100%;
transform:perspective(100px) rotateX(30deg);
box-shadow: 2px 2px 15px #41423D;
}
<div class="shape"></div>