text-shadow.uvue 760 B

12345678910111213141516171819202122232425262728
  1. <template>
  2. <view class="container">
  3. <text class="text" style="text-shadow: 1px 1px 2px pink;">text-shadow: 1px 1px 2px pink</text>
  4. <text class="text" style="text-shadow: #fc0 1px 0 10px;">text-shadow: #fc0 1px 0 10px</text>
  5. <text class="text" style="text-shadow: 5px 5px #558abb;">text-shadow: 5px 5px #558abb</text>
  6. <text class="text" style="text-shadow: red 2px 5px;">text-shadow: red 2px 5px</text>
  7. <text class="text" style="text-shadow: 5px 10px;">text-shadow: 5px 10px</text>
  8. </view>
  9. </template>
  10. <script setup>
  11. </script>
  12. <style>
  13. .container {
  14. height: 250px;
  15. background-color: gray;
  16. justify-content: center;
  17. }
  18. .text {
  19. width: 100%;
  20. height: 40px;
  21. font-size: 20px;
  22. text-align: center;
  23. }
  24. </style>