如图 下方箭头的渐变要与上方的渐变保持一致
请教各位大佬有什么好的实现方式
如果是纯色背景的话,可以尝试这样:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>纯色背景</title>
<style>
.outer {
background: linear-gradient(blue, pink);
width: 550px;
height: 250px;
}
.out {
position: relative;
width: 100%;
height: 100%;
/* background-color: rgba(0, 0, 0, 0); */
}
.left {
position: absolute;
left: 0;
bottom: 0;
width: 245px;
height: 0;
border-bottom: 30px solid rgb(255, 255, 255);
border-right: 30px solid rgba(0, 0, 0, 0);
}
.right {
position: absolute;
right: 0;
bottom: 0;
width: 245px;
height: 0;
border-bottom: 30px solid rgb(255, 255, 255);
border-left: 30px solid rgba(0, 0, 0, 0);
}
</style>
</head>
<body>
<div class="outer">
<div class="out">
<div class="left"></div>
<div class="right"></div>
</div>
</div>
</body>
</html>
效果图:
3 回答5.2k 阅读✓ 已解决
5 回答2.1k 阅读
2 回答2k 阅读✓ 已解决
1 回答3.1k 阅读✓ 已解决
3 回答2.5k 阅读
3 回答2.2k 阅读
2 回答1.1k 阅读✓ 已解决
如果仅需要直角的话,
clip-path
就可以了,如果需要圆角,比如这样可以参考之前写的这篇文章 https://segmentfault.com/a/11...