font-family.uvue 1.3 KB
Newer Older
DCloud-WZF's avatar
DCloud-WZF 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
<template>
  <view>
    <text class="common" style="font-family: monospace"
      >font-family: monospace</text
    >
    <text class="common" style="font-family: cursive"
      >font-family: cursive</text
    >
    <text class="common" style="font-family: AlimamaDaoLiTiTTF"
      >font-family: 阿里妈妈刀隶体-ttf(网络字体下载后生效)</text
    >
    <!-- 			<text class="common" style="font-family: AlimamaDaoLiTiOTF"
        >font-family: 阿里妈妈刀隶体-otf</text
      >
			<text class="common" style="font-family: AlimamaDaoLiTiWOFF"
        >font-family: 阿里妈妈刀隶体-woff</text
      >
			<text class="common" style="font-family: AlimamaDaoLiTiWOFF2"
        >font-family: 阿里妈妈刀隶体-woff2</text
      > -->
  </view>
</template>

<style>
.common {
  font-size: 20px;
  line-height: 40px;
}

@font-face {
  font-family: AlimamaDaoLiTiTTF;
  src: url('https://native-res.dcloud.net.cn/uni-app-x/static/font/AlimamaDaoLiTi.ttf');
}
/* @font-face {
  font-family: AlimamaDaoLiTiOTF;
  src: url('/static/font/AlimamaDaoLiTi.otf');
}
@font-face {
  font-family: AlimamaDaoLiTiWOFF;
  src: url('/static/font/AlimamaDaoLiTi.woff');
}
@font-face {
  font-family: AlimamaDaoLiTiWOFF2;
  src: url('/static/font/AlimamaDaoLiTi.woff2');
} */
</style>