font.nvue 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <template>
  2. <view class="container">
  3. <uni-card :is-shadow="false" is-full>
  4. <text class="uni-h6">字体辅助样式提供了常见的字体样式类</text>
  5. </uni-card>
  6. <uni-section title=".uni-h1" type="line">
  7. <view class="uni-ma-5 uni-mb-5 uni-pl-10">
  8. <text class="uni-h1">一级标题</text>
  9. </view>
  10. </uni-section>
  11. <uni-section title=".uni-h2" type="line">
  12. <view class="uni-mx-5 uni-mb-5 uni-pl-10">
  13. <text class="uni-h2">二级标题</text>
  14. </view>
  15. </uni-section>
  16. <uni-section title=".uni-h3" type="line">
  17. <view class="uni-mx-5 uni-mb-5 uni-pl-10">
  18. <text class="uni-h3">三级标题</text>
  19. </view>
  20. </uni-section>
  21. <uni-section title=".uni-h4" type="line">
  22. <view class="uni-mx-5 uni-mb-5 uni-pl-10">
  23. <text class="uni-h4">四级标题</text>
  24. </view>
  25. </uni-section>
  26. <uni-section title=".uni-h5" type="line">
  27. <view class="uni-mx-5 uni-mb-5 uni-pl-10">
  28. <text class="uni-h5">五级标题</text>
  29. </view>
  30. </uni-section>
  31. <uni-section title=".uni-h6" type="line">
  32. <view class="uni-mx-5 uni-mb-5 uni-pl-10">
  33. <text class="uni-h6">六级标题</text>
  34. </view>
  35. </uni-section>
  36. <uni-section title=".uni-subtitle" type="line">
  37. <view class="uni-mx-5 uni-mb-5 uni-pl-10">
  38. <text class="uni-subtitle">副标题</text>
  39. </view>
  40. </uni-section>
  41. <uni-section title=".uni-body" type="line">
  42. <view class="uni-mx-5 uni-mb-5 uni-pl-10">
  43. <text class="uni-body">uni-ui 是 DCloud 官方面向 uni-app 开发者提供的一套 ui 解决方案</text>
  44. </view>
  45. </uni-section>
  46. <uni-section title=".uni-caption" type="line">
  47. <view class="uni-mx-5 uni-mb-5 uni-pl-10">
  48. <text class="uni-caption">标注说明文字</text>
  49. </view>
  50. </uni-section>
  51. </view>
  52. </template>
  53. <style></style>