text-overflow.uvue 755 字节
Newer Older
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
1
<template>
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
2
  <view style="flex-grow: 1;">
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
3
    <view style="height: 250px;background-color: gray;justify-content: center;align-items: center;">
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
4 5 6 7 8
      <text class="common" style="text-overflow: clip;white-space: normal;">{{text}}</text>
      <text class="common" style="text-overflow: clip;white-space: nowrap;">{{text}}</text>
      <text class="common" style="text-overflow: ellipsis;white-space: nowrap;">{{text}}</text>
    </view>
  </view>
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
9 10 11
</template>

<script>
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
12 13 14 15 16 17 18
  export default {
    data() {
      return {
        text: 'HBuilderX,轻巧、极速,极客编辑器;uni-app x,终极跨平台方案;uts,大一统语言'
      }
    }
  }
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
19 20 21
</script>

<style>
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
22
  .common {
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
23 24
    width: 250px;
    height: 30px;
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
25 26 27
    font-size: 20px;
  }
</style>