Web 開発では、多くの場合、カスタマイズ可能なブラウジング エクスペリエンスをユーザーに提供することが望まれます。これには、ブラウザが表示できるフォントのリストから好みのフォントを選択できるようにすることが含まれます。これを促進するには、利用可能なすべてのフォントのリストをプログラムで取得する方法が必要です。
この問題を解決する 1 つのアプローチは、フォントのリストをハードコードするか、サーバーから取得することです。ただし、このアプローチは面倒な場合があり、ユーザーがブラウザに追加のフォントをインストールしている状況には対応できない可能性があります。
幸いなことに、JavaScript を使用したよりエレガントで動的なソリューションが存在します。次のスニペットでは、フォント検出として知られる技術を利用しています:
/**
* JavaScript code to detect available availability of a
* particular font in a browser using JavaScript and CSS.
*
* Author : Lalit Patel
* Website: http://www.lalit.org/lab/javascript-css-font-detect/
* License: Apache Software License 2.0
* http://www.apache.org/licenses/LICENSE-2.0
* Version: 0.15 (21 Sep 2009)
* Changed comparision font to default from sans-default-default,
* as in FF3.0 font of child element didn't fallback
* to parent element if the font is missing.
* Version: 0.2 (04 Mar 2012)
* Comparing font against all the 3 generic font families ie,
* 'monospace', 'sans-serif' and 'sans'. If it doesn't match all 3
* then that font is 100% not available in the system
* Version: 0.3 (24 Mar 2012)
* Replaced sans with serif in the list of baseFonts
*/
/**
* Usage: d = new Detector();
* d.detect('font name');
*/
var Detector = function() {
// a font will be compared against all the three default fonts.
// and if it doesn't match all 3 then that font is not available.
var baseFonts = ['monospace', 'sans-serif', 'serif'];
//we use m or w because these two characters take up the maximum width.
// And we use a LLi so that the same matching fonts can get separated
var testString = "mmmmmmmmmmlli";
//we test using 72px font size, we may use any size. I guess larger the better.
var testSize = '72px';
var h = document.getElementsByTagName("body")[0];
// create a SPAN in the document to get the width of the text we use to test
var s = document.createElement("span");
s.style.fontSize = testSize;
s.innerHTML = testString;
var defaultWidth = {};
var defaultHeight = {};
for (var index in baseFonts) {
//get the default width for the three base fonts
s.style.fontFamily = baseFonts[index];
h.appendChild(s);
defaultWidth[baseFonts[index]] = s.offsetWidth; //width for the default font
defaultHeight[baseFonts[index]] = s.offsetHeight; //height for the defualt font
h.removeChild(s);
}
function detect(font) {
var detected = false;
for (var index in baseFonts) {
s.style.fontFamily = font ',' baseFonts[index]; // name of the font along with the base font for fallback.
h.appendChild(s);
var matched = (s.offsetWidth != defaultWidth[baseFonts[index]] || s.offsetHeight != defaultHeight[baseFonts[index]]);
h.removeChild(s);
detected = detected || matched;
}
return detected;
}
this.detect = detect;
};
このコードは、「detect」メソッドを使用して「Detector」オブジェクトを作成します。 「detect」メソッドは引数としてフォント名を受け取り、そのフォントがブラウザでレンダリングできるかどうかを示すブール値を返します。
このコードは、 要素を作成し、その font-family を設定することで機能します。指定されたフォントに。この要素はドキュメント本文に追加されます。次に、要素の幅と高さが測定され、「等幅」、「サンセリフ」、「セリフ」の 3 つのフォントのデフォルト値と比較されます。測定値がデフォルト値と異なる場合は、指定したフォントが使用可能であることを示します。
使用可能なフォントをすべて列挙するには、フォント名の配列を反復処理し、フォントごとに「detect」メソッドを呼び出すだけです。 。結果は、ブラウザがレンダリングできるすべてのフォントのリストになります。
免責事項: 提供されるすべてのリソースの一部はインターネットからのものです。お客様の著作権またはその他の権利および利益の侵害がある場合は、詳細な理由を説明し、著作権または権利および利益の証拠を提出して、電子メール [email protected] に送信してください。 できるだけ早く対応させていただきます。
Copyright© 2022 湘ICP备2022001581号-3