background-color.uvue 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <template>
  2. <!-- #ifdef APP -->
  3. <scroll-view style="flex: 1">
  4. <!-- #endif -->
  5. <view style="flex-grow: 1">
  6. <view>
  7. <text>background-color: red</text>
  8. <view class="common" style="background-color: red"></view>
  9. </view>
  10. <view>
  11. <text>background-color: #ff0000</text>
  12. <view class="common" style="background-color: #ff0000"></view>
  13. </view>
  14. <view>
  15. <text>background-color: #f00</text>
  16. <view class="common" style="background-color: #f00"></view>
  17. </view>
  18. <view>
  19. <text>background-color: #ff000080</text>
  20. <view class="common" style="background-color: #ff000080"></view>
  21. </view>
  22. <view>
  23. <text>background-color: #f008</text>
  24. <view class="common" style="background-color: #f008"></view>
  25. </view>
  26. <view>
  27. <text>background-color: rgb(255, 0, 0)</text>
  28. <view class="common" style="background-color: rgb(255, 0, 0)"></view>
  29. </view>
  30. <view>
  31. <text>background-color: rgba(255, 0, 0, 0.5)</text>
  32. <view class="common" style="background-color: rgba(255, 0, 0, 0.5)"></view>
  33. </view> <view> <text>background-color: #ff000080</text> <view class="common" style="background-color: #ff000080"></view> </view>
  34. </view>
  35. <!-- #ifdef APP -->
  36. </scroll-view>
  37. <!-- #endif -->
  38. </template>
  39. <style>
  40. .common {
  41. width: 250px;
  42. height: 250px;
  43. }
  44. </style>