text-overflow.uvue 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <template>
  2. <view style="flex-grow: 1;">
  3. <view style="height: 500px;padding: 0 30px; background-color: gray;justify-content: center;">
  4. <view class="margin-bottom-10">
  5. <text class="font-weight-bold">text-overflow:clip white-space:nowrap</text>
  6. <text class="font-size-20" style="text-overflow: clip;white-space: nowrap;">{{multiLineText}}</text>
  7. </view>
  8. <view class="margin-bottom-10">
  9. <text class="font-weight-bold">text-overflow:ellipsis white-space:nowrap</text>
  10. <text class="font-size-20" style="text-overflow: ellipsis;white-space: nowrap;">{{singleLineText}}</text>
  11. <text class="font-size-20" style="text-overflow: ellipsis;white-space: nowrap;">{{multiLineText}}</text>
  12. </view>
  13. <view class="margin-bottom-10">
  14. <text class="font-weight-bold">white-space:normal</text>
  15. <text class="font-size-20" style="white-space: normal;">{{multiLineText}}</text>
  16. </view>
  17. <view class="margin-bottom-10" style="overflow: visible;">
  18. <text class="font-weight-bold">white-space: nowrap</text>
  19. <text class="font-size-20" style="white-space: nowrap;align-self: flex-start;">{{multiLineText}}</text>
  20. </view>
  21. <view class="margin-bottom-10">
  22. <text class="font-weight-bold">任意宽度截断(100px、200px、300px)</text>
  23. <text class="font-size-20" style="text-overflow: ellipsis;white-space: nowrap;width: 100px;">{{multiLineText}}</text>
  24. <text class="font-size-20" style="text-overflow: ellipsis;white-space: nowrap;width: 200px;">{{multiLineText}}</text>
  25. <text class="font-size-20" style="text-overflow: ellipsis;white-space: nowrap;width: 300px;">{{multiLineText}}</text>
  26. </view>
  27. <!-- #ifdef APP -->
  28. <view class="margin-bottom-10">
  29. <text class="font-weight-bold">lines:1 text-overflow:ellipsis</text>
  30. <text class="font-size-20" style="text-overflow: ellipsis; lines: 1;">{{multiLineText}}</text>
  31. </view>
  32. <!-- #endif -->
  33. </view>
  34. </view>
  35. </template>
  36. <script>
  37. export default {
  38. data() {
  39. return {
  40. multiLineText: 'HBuilderX,轻巧、极速,极客编辑器;uni-app x,终极跨平台方案;uts,大一统语言',
  41. singleLineText: 'uts,大一统语言(单行文本)'
  42. }
  43. }
  44. }
  45. </script>
  46. <style>
  47. .font-size-20 {
  48. font-size: 20px;
  49. }
  50. .font-weight-bold {
  51. font-weight: bold;
  52. }
  53. .margin-bottom-10 {
  54. margin-bottom: 10px;
  55. }
  56. </style>