complex-border.uvue 1.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
<template>
	<view style="flex-grow: 1;">
		<view>
			<text>圆角 : 各边之间 不同width && 不同颜色 && 不同圆角</text>
			<view
				style="width: 500rpx;height: 500rpx;background-color: gray;justify-content: center;align-items: center;">
				<view class="border-circle"></view>
			</view>
		</view>

		<view>
			<text>直角 : 各边之间 不同width && 不同颜色 </text>
			<view
				style="width: 500rpx;height: 500rpx;background-color: gray;justify-content: center;align-items: center;">
				<view class="border-rect"></view>
			</view>
		</view>
	</view>
</template>

<script>

</script>

<style>
	.common {
		width: 500rpx;
		height: 500rpx;
		background-color: gray;
	}

	.border-circle {
		width: 250rpx;
		height: 250rpx;
		background-color: #00dd00;
xuty73419315's avatar
xuty73419315 已提交
36 37
		border-width: 20rpx;
    border-style: solid;
38 39 40 41 42 43 44 45 46 47 48
		border-color: #000000;
		border-bottom-width: 40rpx;
		border-bottom-color: #ff0000;
		border-bottom-right-radius: 50rpx;
		border-bottom-left-radius: 30rpx;
		border-radius: 10rpx;
		border-right-color: #FFDC02;
	}

	.border-rect {
		width: 250rpx;
xuty73419315's avatar
xuty73419315 已提交
49 50
		height: 250rpx;
    border-style: solid;
51 52 53 54 55 56 57
		background-color: #00dd00;
		border-width: 20rpx;
		border-color: #000000;
		border-bottom-width: 40rpx;
		border-bottom-color: #ff0000;
		border-right-color: #FFDC02;
	}
xuty73419315's avatar
xuty73419315 已提交
58
</style>