zhao-text.vue 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. <template>
  2. <view class="zhao-text">
  3. <view class="position-text" id="text">
  4. {{text}}
  5. </view>
  6. <view class="text" v-if="show" :class="{line5:showmore}">
  7. {{text}}
  8. </view>
  9. <view class="text-more" v-if="showmore">
  10. <text>...</text>
  11. <text @click.stop="showmore = false">全文</text>
  12. </view>
  13. </view>
  14. </template>
  15. <script>
  16. export default {
  17. props: {
  18. text: {
  19. type: String,
  20. default: ''
  21. }
  22. },
  23. data() {
  24. return {
  25. showmore: false,
  26. show:false
  27. }
  28. },
  29. created() {
  30. },
  31. mounted() {
  32. const query = uni.createSelectorQuery().in(this);
  33. query.select('#text').boundingClientRect(data => {
  34. if (data.height > 110) {
  35. this.showmore = true
  36. }
  37. this.show = true
  38. }).exec();
  39. },
  40. methods: {
  41. }
  42. }
  43. </script>
  44. <style lang="scss">
  45. .zhao-text {
  46. position: relative;
  47. overflow: hidden;
  48. .position-text{
  49. position: absolute;
  50. // top: -100vh;
  51. // left: -100vh;
  52. z-index: -100;
  53. font-size: 15px;
  54. font-family: PingFangSC-Regular, PingFang SC;
  55. font-weight: 400;
  56. color: #333333;
  57. line-height: 21px;
  58. text-align: justify;
  59. width: 100%;
  60. }
  61. .text-more {
  62. position: absolute;
  63. bottom: 0;
  64. right: 0;
  65. line-height: 21px;
  66. font-size: 15px;
  67. background-color: #fff;
  68. text:first-child {
  69. color: #333333;
  70. letter-spacing: 2rpx;
  71. }
  72. text:last-child {
  73. color: #0C66C2;
  74. margin-left: 2rpx;
  75. // padding: 0 4rpx;
  76. }
  77. }
  78. .line5 {
  79. display: -webkit-box;
  80. -webkit-box-orient: vertical;
  81. -webkit-line-clamp: 5;
  82. overflow: hidden;
  83. }
  84. .text {
  85. font-size: 15px;
  86. font-family: PingFangSC-Regular, PingFang SC;
  87. font-weight: 400;
  88. color: #333333;
  89. line-height: 21px;
  90. text-align: justify;
  91. }
  92. }
  93. </style>