css – 使用rel preload预加载字体

前端之家收集整理的这篇文章主要介绍了css – 使用rel preload预加载字体前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用html link rel preload标签预加载字体:
<link rel="preload" href="fonts/32ADEO.woff2" as="font" type="font/woff2">

虽然这确实首先加载字体,但chrome中的网络选项卡显示两次加载字体!?

我也收到以下警告:

The resource 07001 was
preloaded using link preload but not used within a few seconds from
the window’s load event. Please make sure it Please make sure it has
an appropriate as value and it is preloaded intentionally.

我究竟做错了什么?

解决方法

preload-Tag采用“crossorigin”参数,必须为Webfonts提供,即使它们与您的网站位于同一主机上.

https://developer.mozilla.org/en-US/docs/Web/HTML/Preloading_content#Cross-origin_fetcheshttps://www.smashingmagazine.com/2016/02/preload-what-is-it-good-for/#early-loading-of-fonts.

原文链接:https://www.f2er.com/css/215850.html

猜你在找的CSS相关文章