Css realizes gradient spline

The effect is shown in the figure.
Insert picture description here
Basic layout and style

<view class="address-line"></view>
<style>
	.address-line {
    
    
	margin-top: 100rpx;
	height: 8rpx;
	background-image: -webkit-linear-gradient(315deg,#82c9ff 8px,transparent 0,transparent 16px,#ff8282 0,#ff8282 32px,transparent 0,transparent 0,transparent 40px,#82c9ff 0,#82c9ff);
	background-image: linear-gradient(135deg,#82c9ff 8px,transparent 0,transparent 16px,#ff8282 0,#ff8282 32px,transparent 0,transparent 0,transparent 40px,#82c9ff 0,#82c9ff);
	background-color: #fff;
	background-size: 136rpx 8rpx;
	}
</style>

Guess you like

Origin blog.csdn.net/weixin_44640323/article/details/112757075
Recommended