>웹 프론트엔드 >CSS 튜토리얼 >JavaScript를 사용하여 웹 브라우저에서 사용 가능한 글꼴을 프로그래밍 방식으로 나열하려면 어떻게 해야 합니까?

JavaScript를 사용하여 웹 브라우저에서 사용 가능한 글꼴을 프로그래밍 방식으로 나열하려면 어떻게 해야 합니까?

DDD
DDD원래의
2024-11-28 01:08:11677검색

How Can I Programmatically List Available Fonts in a Web Browser Using JavaScript?

JavaScript를 사용하는 웹 브라우저에서 사용 가능한 글꼴 목록

웹 애플리케이션에서 사용자에게 사용 가능한 글꼴 드롭다운을 제공하면 글꼴을 사용자 정의할 수 있어 사용자 경험이 향상됩니다. 텍스트의 모습. 이 사용자 정의를 위해서는 브라우저가 표시할 수 있는 글꼴 목록을 얻어야 합니다.

다행히도 이 문제에 대한 직관적인 해결책이 있습니다. JavaScript는 브라우저가 액세스할 수 있는 모든 글꼴을 나열하는 간단한 방법을 제공합니다. 이는 사용자가 선호하는 글꼴을 선택하고 원하는 대로 웹 페이지를 맞춤화할 수 있도록 하는 중요한 단계입니다.

솔루션

재능 있는 JavaScript 개발자가 개발자가 사용 가능한 글꼴을 감지할 수 있는 포괄적인 솔루션을 만들었습니다. 브라우저의 글꼴. 이 방법은 렌더링된 특정 문자의 너비와 높이를 비교하는 기술을 사용합니다. 기본 글꼴과의 편차를 교차 검사함으로써 스크립트는 특정 사용자 지정 글꼴의 가용성을 정확하게 결정합니다.

이 솔루션의 코드는 GitHub에서 사용할 수 있습니다.

구현

/**
 * 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;
};

이 방법을 활용하면 개발자는 원활한 글꼴 사용자 정의가 가능한 사용자 인터페이스를 쉽게 만들 수 있습니다. 사용자에게 포괄적인 목록에서 선호하는 글꼴을 선택할 수 있는 기능을 제공하면 웹 애플리케이션에 대한 전반적인 사용자 경험과 만족도가 향상됩니다.

위 내용은 JavaScript를 사용하여 웹 브라우저에서 사용 가능한 글꼴을 프로그래밍 방식으로 나열하려면 어떻게 해야 합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.