TwTypography.vue 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. <script setup>
  2. import useTypography from '../../hooks/useTypography.js'
  3. const {
  4. FontFamily,
  5. FontSize,
  6. FontSmoothing,
  7. FontStyle,
  8. FontWeight,
  9. FontVariantNumeric,
  10. LetterSpacing,
  11. LineClamp,
  12. LineHeight,
  13. ListStyleImage,
  14. ListStylePosition,
  15. ListStyleType,
  16. TextAlign,
  17. TextColor,
  18. TextDecoration,
  19. TextDecorationColor,
  20. TextDecorationStyle,
  21. TextDecorationThickness,
  22. TextUnderlineOffset,
  23. TextTransform,
  24. TextOverflow,
  25. TextIndent,
  26. VerticalAlign,
  27. Whitespace,
  28. WordBreak,
  29. Hyphens,
  30. Content
  31. } = useTypography()
  32. </script>
  33. <template>
  34. <view>
  35. <JcDemo v-bind="FontFamily"></JcDemo>
  36. <JcDemo v-bind="FontSize">
  37. <view class="flex flex-col gap-8">
  38. <view>
  39. <text class="font-medium text-sm text-slate-500 font-mono mb-3 dark:text-slate-400">text-sm</text>
  40. <view class="text-sm font-medium text-slate-900 dark:text-slate-200">
  41. The quick brown fox jumps over the lazy dog.
  42. </view>
  43. </view>
  44. <view>
  45. <text class="font-medium text-sm text-slate-500 font-mono mb-3 dark:text-slate-400">text-base</text>
  46. <view class="text-base font-medium text-slate-900 dark:text-slate-200">
  47. The quick brown fox jumps over the lazy dog.
  48. </view>
  49. </view>
  50. <view>
  51. <text class="font-medium text-sm text-slate-500 font-mono mb-3 dark:text-slate-400">text-lg</text>
  52. <view class="text-lg font-medium text-slate-900 dark:text-slate-200">
  53. The quick brown fox jumps over the lazy dog.
  54. </view>
  55. </view>
  56. <view>
  57. <text class="font-medium text-sm text-slate-500 font-mono mb-3 dark:text-slate-400">text-xl</text>
  58. <view class="text-xl font-medium text-slate-900 dark:text-slate-200">
  59. The quick brown fox jumps over the lazy dog.
  60. </view>
  61. </view>
  62. <view>
  63. <text class="font-medium text-sm text-slate-500 font-mono mb-3 dark:text-slate-400">text-2xl</text>
  64. <view class="text-2xl font-medium text-slate-900 dark:text-slate-200">
  65. The quick brown fox jumps over the lazy dog.
  66. </view>
  67. </view>
  68. </view>
  69. </JcDemo>
  70. <!-- <JcDemo v-bind="FontSmoothing"></JcDemo> -->
  71. <JcDemo v-bind="FontStyle"></JcDemo>
  72. <JcDemo v-bind="FontWeight"></JcDemo>
  73. <JcDemo v-bind="FontVariantNumeric"></JcDemo>
  74. <JcDemo v-bind="LetterSpacing">
  75. <view class="flex flex-col gap-8">
  76. <view>
  77. <text class="font-medium text-sm text-slate-500 font-mono mb-3 dark:text-slate-400">tracking-tight</text>
  78. <view class="tracking-tight text-lg font-medium text-slate-900 dark:text-slate-200">
  79. The quick brown fox jumps over the lazy dog.
  80. </view>
  81. </view>
  82. <view>
  83. <text class="font-medium text-sm text-slate-500 font-mono mb-3 dark:text-slate-400">tracking-normal</text>
  84. <view class="tracking-normal text-lg font-medium text-slate-900 dark:text-slate-200">
  85. The quick brown fox jumps over the lazy dog.
  86. </view>
  87. </view>
  88. <view>
  89. <text class="font-medium text-sm text-slate-500 font-mono mb-3 dark:text-slate-400">tracking-wide</text>
  90. <view class="tracking-wide text-lg font-medium text-slate-900 dark:text-slate-200">
  91. The quick brown fox jumps over the lazy dog.
  92. </view>
  93. </view>
  94. </view>
  95. </JcDemo>
  96. <JcDemo v-bind="LineClamp">
  97. <view class="mx-auto max-w-sm bg-white p-8 text-sm leading-6 text-slate-700 shadow-xl ">
  98. <view datetime="2020-03-16" class="block text-sm leading-6 text-slate-500 ">Mar 10, 2020</view>
  99. <view class="mt-2 text-lg font-semibold text-slate-900 ">Boost your conversion rate</view>
  100. <view class="line-clamp-3 mt-4 text-sm leading-6 text-slate-500 ">Nulla dolor velit adipisicing duis excepteur esse in duis nostrud occaecat mollit incididunt deserunt sunt. Ut ut sunt laborum ex occaecat eu tempor labore enim adipisicing minim ad. Est in quis eu dolore occaecat excepteur fugiat dolore nisi aliqua fugiat enim ut cillum. Labore enim duis nostrud eu. Est ut eiusmod consequat irure quis deserunt ex. Enim laboris dolor magna pariatur. Dolor et ad sint voluptate sunt elit mollit officia ad enim sit consectetur enim.</view>
  101. <view class="mt-4 flex gap-x-2.5 text-sm font-semibold leading-6 text-slate-900 ">
  102. <img class="h-6 w-6 flex-none rounded-full bg-slate-50 " src="https://images.unsplash.com/photo-1517841905240-472988babdf9?ixlib=rb-1.2.1&amp;ixid=eyJhcHBfaWQiOjEyMDd9&amp;auto=format&amp;fit=facearea&amp;facepad=2&amp;w=256&amp;h=256&amp;q=80" alt="">
  103. Lindsay Walton
  104. </view>
  105. </view>
  106. </JcDemo>
  107. <JcDemo v-bind="LineHeight"></JcDemo>
  108. <!-- <JcDemo v-bind="ListStyleImage"></JcDemo> -->
  109. <!-- <JcDemo v-bind="ListStylePosition"></JcDemo> -->
  110. <!-- <JcDemo v-bind="ListStyleType"></JcDemo> -->
  111. <JcDemo v-bind="TextAlign">
  112. <view class="space-y-2">
  113. <view class="text-left">text-left</view>
  114. <view class="text-center">text-center</view>
  115. <view class="text-right">text-right</view>
  116. </view>
  117. </JcDemo>
  118. <JcDemo v-bind="TextColor">
  119. <view class="text-xl font-medium leading-6 space-y-2">
  120. <view class="text-blue-600">The quick brown fox jumps over the lazy dog.</view>
  121. <view class="text-blue-500">The quick brown fox jumps over the lazy dog.</view>
  122. <view class="text-blue-400">The quick brown fox jumps over the lazy dog.</view>
  123. <view class="text-blue-300">The quick brown fox jumps over the lazy dog.</view>
  124. <view class="text-blue-200">The quick brown fox jumps over the lazy dog.</view>
  125. <view class="text-blue-100">The quick brown fox jumps over the lazy dog.</view>
  126. </view>
  127. <view class="p-2 my-2 bg-black__5">透明度[只支持white,black]</view>
  128. <view class="text-xl font-medium leading-6 space-y-2">
  129. <view class="text-black">The quick brown fox jumps over the lazy dog.</view>
  130. <view class="text-black__75">The quick brown fox jumps over the lazy dog.</view>
  131. <view class="text-black__50">The quick brown fox jumps over the lazy dog.</view>
  132. <view class="text-black__5">The quick brown fox jumps over the lazy dog.</view>
  133. </view>
  134. </JcDemo>
  135. <JcDemo v-bind="TextDecoration"></JcDemo>
  136. <JcDemo v-bind="TextDecorationColor"></JcDemo>
  137. <JcDemo v-bind="TextDecorationStyle"></JcDemo>
  138. <JcDemo v-bind="TextDecorationThickness"></JcDemo>
  139. <JcDemo v-bind="TextUnderlineOffset"></JcDemo>
  140. <JcDemo v-bind="TextTransform"></JcDemo>
  141. <JcDemo v-bind="TextOverflow">
  142. <view class="truncate">
  143. The longest word in any of the major English language dictionaries is <text class="text-slate-900 font-medium">pneumonoultramicroscopicsilicovolcanoconiosis,</text> a word that refers to a lung disease contracted from the inhalation of very fine silica particles, specifically from a volcano; medically, it is the same as silicosis.
  144. </view>
  145. </JcDemo>
  146. <JcDemo v-bind="TextIndent"></JcDemo>
  147. <JcDemo v-bind="VerticalAlign"></JcDemo>
  148. <JcDemo v-bind="Whitespace"></JcDemo>
  149. <JcDemo v-bind="WordBreak"></JcDemo>
  150. <JcDemo v-bind="Hyphens"></JcDemo>
  151. <JcDemo v-bind="Content"></JcDemo>
  152. </view>
  153. </template>
  154. <style>
  155. </style>