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

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

<script>

</script>

<style>
DCloud-WZF's avatar
DCloud-WZF 已提交
24 25 26 27 28
  .common {
    width: 250px;
    height: 250px;
    background-color: gray;
  }
29

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

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