2

我的公共文件夹中有一个 font-face 文件夹和一个对所有 font-face 字体收费的 css

@font-face
    font-family font1
    src url('/fonts/font1-Regular.otf')
@font-face
    font-family font2
    src url('/fonts/font2-Regular.otf')
@font-face
    font-family font3
    src url('/fonts/font3-Regular.otf')
@font-face
    font-family font4
    src url('/fonts/font4-Regular.otf')
@font-face
    font-family font5
    src url('/fonts/font5-Regular.otf')
@font-face
    font-family font6
    src url('/fonts/font6-Regular.otf')

在我的网络中,用户可以使用字体列表中的任何字体......

我想知道,所有字体都在内存中???或者只是使用的字体...如果我加载更多字体会减慢网络的速度???

全部!

4

1 回答 1

-3

请求多种字体允许您在页面中使用所有这些字体。(但不要过火;大多数页面不需要很多字体,并且请求大量字体可能会使您的页面加载缓慢。)

于 2013-02-23T07:15:04.100 回答