gpt4 book ai didi

css - @font-face 嵌入 iOS 3.0 - 4.1

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:15:05 28 4
gpt4 key购买 nike

这是我的 CSS 示例(适用于 iOS 4.2)但不适用于 iOS <4.1 的任何早期版本)

/**** CSS3 Font embedding ****/
@font-face {
font-family: 'ChevinLight';
src: url('./uploads/fonts/chevilig-webfont.eot');
src: url('./uploads/fonts/chevilig-webfont.ttf') format('truetype'), url('./uploads/fonts/chevilig-webfont.svg') format('svg');
font-weight: normal;
font-style: normal;
}

@font-face {
font-family: 'ChevinBold';
src: url('./uploads/fonts/chevibol-webfont.eot');
src: url('./uploads/fonts/chevibol-webfont.ttf') format('truetype'), url('./uploads/fonts/chevibol-webfont.svg') format('svg');
font-weight: normal;
font-style: normal;
}


body {
height: 100%;
font-family: Helvetica, Arial, sans-serif;
background: #009933;
padding: 0 10px 0 10px;
}


/****** ELEMENTS *****/
h1, h2 {
text-transform: uppercase;
color: #FFFFFF;
}
h1 {
font-family: 'ChevinBold', Helvetica, Arial, sans-serif;
font-size: 16px;
margin: 0 0 5px 0;
font-weight: normal;
line-height: 1px;
}
h2 {
font-family: 'ChevinLight', Helvetica, Arial, sans-serif;
font-size: 16px;
margin: 6px 0 5px 0;
font-weight: normal;
line-height: 1px;
}
p {
font-family: 'ChevinLight', Helvetica, Arial, sans-serif;
font-size: 15px;
font-weight: normal;
color: #FFFFFF;
}

我无法想出(或找到)在这些 iOS 版本中的这些早期版本的 Safari 中嵌入字体的方法。

请问有人能帮忙吗?

谢谢。

最佳答案

SVG 字体必须像这样引用:

@font-face {
font-family: 'KomikaHandRegular';
src: url('Komika_Hand-webfont.ttf') format('truetype'),
url('Komika_Hand-webfont.svg#webfontATHY6trD') format('svg');
font-weight: normal;
font-style: normal;
}

...其中 #webfontATHY6trD 是 SVG 文件中字体的 ID。它应该看起来像这样(只需在文本编辑器中打开它):

font id="webfontATHY6trD" horiz-adv-x="1259"

关于css - @font-face 嵌入 iOS 3.0 - 4.1,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4799907/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com