gpt4 book ai didi

jquery - 无法使用 Chrome 加载 @font-face,jquery 出错?

转载 作者:行者123 更新时间:2023-11-28 01:33:43 26 4
gpt4 key购买 nike

尝试在 Chrome 中加载@font-face,未经其他浏览器测试。

@font-face {
font-family: titleFont;
src: url('/fonts/VanadineBold.ttf') format("truetype");
/*Have also tried...*/
/*src: url('/fonts/VanadineBold.woff') format("woff");*/
/*src: url('/fonts/VanadineBold.woff2') format("woff2");*/
font-weight: normal;
font-style: normal;
}

p#title {
font-family: titleFont, sans-serif;
position: absolute;
top: 5%;
left: 50%;
transform: translate(-50%, -50%);
}

继续加载无衬线字体,并在控制台中抛出此错误......?

jquery.min.js:2 GET http://localhost:63342/fonts/VanadineBold.ttf 404 (Not Found)

这是我的文件夹结构...

根文件夹:

Root folder

在字体文件夹内: Inside the fonts folder

最佳答案

查看this document , format('truetype') 似乎适用于 Safari。

@font-face {
font-family: 'MyWebFont';
src: url('webfont.eot'); /* IE9 Compat Modes */
src: url('webfont.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('webfont.woff2') format('woff2'), /* Super Modern Browsers */
url('webfont.woff') format('woff'), /* Pretty Modern Browsers */
url('webfont.ttf') format('truetype'), /* Safari, Android, iOS */
url('webfont.svg#svgFontName') format('svg'); /* Legacy iOS */
}

尝试为 chrome 使用 .woff 字体:

src: url('webfont.woff') format('woff')

关于jquery - 无法使用 Chrome 加载 @font-face,jquery 出错?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50809175/

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