1
0

App.vue 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <script>
  2. export default {
  3. onLaunch: function() {
  4. console.log('App Launch')
  5. },
  6. onShow: function() {
  7. console.log('App Show')
  8. },
  9. onHide: function() {
  10. console.log('App Hide')
  11. }
  12. }
  13. </script>
  14. <style>
  15. body, view, text, input, button {
  16. font-family: 'MyFont4', serif;
  17. font-weight: bold;
  18. }
  19. /* @font-face {
  20. font-family: 'MyFont';
  21. src: url('~@/assets/typeface/almmdfdk/AlimamaDongFangDaKai-Regular.woff') format('woff'),
  22. url('~@/assets/typeface/almmdfdk/AlimamaDongFangDaKai-Regular.woff2') format('woff2'),
  23. url('~@/assets/typeface/almmdfdk/AlimamaDongFangDaKai-Regular.ttf') format('truetype');
  24. font-weight: normal;
  25. font-style: normal;
  26. } */
  27. @font-face {
  28. font-family: 'MyFont1'; /* 你可以给字体起一个别名 */
  29. src: url('~@/assets/typeface/ZhenZongShengDianKaiShu/ZhenZongShengDianKaiShu-2.ttf') format('truetype'); /* 还可以加上 ttf 格式作为备选 */
  30. font-weight: normal;
  31. font-style: normal;
  32. }
  33. @font-face {
  34. font-family: 'MyFont2'; /* 你可以给字体起一个别名 */
  35. src: url('~@/assets/typeface/FangZhengKaiTiJianTi/FangZhengKaiTiJianTi-1.ttf') format('truetype'); /* 还可以加上 ttf 格式作为备选 */
  36. font-weight: normal;
  37. font-style: normal;
  38. }
  39. @font-face {
  40. font-family: 'MyFont3'; /* 你可以给字体起一个别名 */
  41. src: url('~@/assets/typeface/FangZhengFangSongJianTi/FangZhengFangSongJianTi-1.ttf') format('truetype'); /* 还可以加上 ttf 格式作为备选 */
  42. font-weight: normal;
  43. font-style: normal;
  44. }
  45. @font-face {
  46. font-family: 'MyFont4'; /* 你可以给字体起一个别名 */
  47. src: url('~@/assets/typeface/JiYingHuiPianHuiSong/JiYingHuiPianHuiSong-2.ttf') format('truetype'); /* 还可以加上 ttf 格式作为备选 */
  48. font-weight: normal;
  49. font-style: normal;
  50. }
  51. </style>