load-font-face-child.uvue 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <template>
  2. <page-head title="loadFontFace-child"></page-head>
  3. <view class="uni-padding-wrap">
  4. <!-- #ifndef MP-WEIXIN -->
  5. <text class="font-size-20">上一页全局加载字体:</text>
  6. <text class="font-size-20 line-height-40" style="font-family: UniFontFamily">font-family: uni.ttf</text>
  7. <view style="flex-direction: row;">
  8. <text style="font-family: UniFontFamily;font-size:20px;">{{uniIcon1}}</text>
  9. <text style="margin-left:5px;margin-right: 20px;line-height:22px;">\ue100</text>
  10. <text style="font-family: UniFontFamily;font-size:20px;">{{uniIcon2}}</text>
  11. <text style="margin-left:5px;line-height:22px;">\ue101</text>
  12. </view>
  13. <!-- #endif -->
  14. <!-- #ifndef APP-HARMONY -->
  15. <text class="uni-common-mt font-size-20">上一页非全局加载字体(不生效为正常):</text>
  16. <text class="font-size-20 line-height-40" style="font-family: AlimamaDaoLiTiTTF">font-family: 阿里妈妈刀隶体-ttf</text>
  17. <text class="font-size-20 line-height-40" style="font-family: AlimamaDaoLiTiOTF">font-family: 阿里妈妈刀隶体-otf</text>
  18. <!-- #endif -->
  19. <!-- <text class="item" style="font-family: AlimamaDaoLiTiWOFF"
  20. >font-family: 阿里妈妈刀隶体-woff</text
  21. >
  22. <text class="item" style="font-family: AlimamaDaoLiTiWOFF2"
  23. >font-family: 阿里妈妈刀隶体-woff2</text
  24. > -->
  25. </view>
  26. </template>
  27. <script>
  28. export default {
  29. data() {
  30. return {
  31. uniIcon1: '\ue100',
  32. uniIcon2: '\ue101',
  33. }
  34. }
  35. }
  36. </script>
  37. <style>
  38. .font-size-20 {
  39. font-size: 20px;
  40. }
  41. .line-height-40 {
  42. line-height: 40px;
  43. }
  44. </style>