相关疑难解决方法(0)

什么是打字稿中的打字

我是Angular2的新手,到目前为止我很享受,但有一个问题:打字.我无法弄清楚如何使用它们以及它们到底是什么.有些地方说使用打字,其他人说使用npm来安装定义.

我糊涂了!!

typescript typescript-typings

32
推荐指数
2
解决办法
2万
查看次数

React 找不到模块 - ttf、otf 字体

我正在尝试像下面的代码一样加载本地字体,但我不断收到Cannot find module '@/landing/fonts/Gotham-Bold.ttf'错误消息,并且不知道这条路径到底出了什么问题。

我的文件夹结构看起来像这样,我正在处理的代码是 LandingPage.tsx

在此处输入图片说明

import { createGlobalStyle } from 'styled-components';
import font from './fonts/Gotham-Bold.ttf'

const Gotham = createGlobalStyle`
  @font-face {
    font-family: 'Gotham';
    font-style: normal;
    font-weight: bold;
    src:
      url(${font}) format('truetype'),
  }
`
Run Code Online (Sandbox Code Playgroud)

javascript css fonts reactjs styled-components

6
推荐指数
2
解决办法
2518
查看次数