complex-border.uvue 1.3 KB
Newer Older
1 2 3 4 5
<template>
	<view style="flex-grow: 1;">
		<view>
			<text>圆角 : 各边之间 不同width && 不同颜色 && 不同圆角</text>
			<view
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
6
				style="width: 250px;height: 250px;background-color: gray;justify-content: center;align-items: center;">
7 8 9 10 11 12 13
				<view class="border-circle"></view>
			</view>
		</view>

		<view>
			<text>直角 : 各边之间 不同width && 不同颜色 </text>
			<view
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
14
				style="width: 250px;height: 250px;background-color: gray;justify-content: center;align-items: center;">
15 16 17 18 19 20 21 22 23 24 25 26
				<view class="border-rect"></view>
			</view>
		</view>
	</view>
</template>

<script>

</script>

<style>
	.common {
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
27 28
		width: 250px;
		height: 250px;
29 30 31 32
		background-color: gray;
	}

	.border-circle {
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
33 34
		width: 125px;
		height: 125px;
35
		background-color: #00dd00;
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
36
		border-width: 10px;
xuty73419315's avatar
xuty73419315 已提交
37
    border-style: solid;
38
		border-color: #000000;
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
39
		border-bottom-width: 20px;
40
		border-bottom-color: #ff0000;
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
41 42 43
		border-bottom-right-radius: 25px;
		border-bottom-left-radius: 15px;
		border-radius: 5px;
44 45 46 47
		border-right-color: #FFDC02;
	}

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