Giter Club home page Giter Club logo

font.js's Introduction

Font.js

Font.js adds new Font() functionality to the JavaScript toolbox, akin to how you use new Image() for images. It adds an onload event hook so that you don't deploy a font resource on your webpage before it's actually ready for use, as browsers can tell you when a font has downloaded, but not when it has been parsed and made ready for on-page rendering. This object can. It can also do this for system fonts, so you can also use Font.js to detect whether a specific system font is installed at the client, for fallbacks and failsafes.

The API is pretty straight forward:

  • constructor

    var font = new Font();

  • load event handler

    font.onload = function() { /* your code here */ };

  • error event handler

    font.onerror = function(error_message) { /* your code here */ };

  • name assignment

    font.fontFamily = "name goes here";

  • font loading

    (!) This line will kick off font loading and will make the font available on-page (if a remote font was requested).

    • system fonts / already @font-face loaded fonts:

      font.src = font.fontFamily;

    (!) Note that this also works for google webfont and typekit fonts that have been loaded through an HTML stylesheet. Any font that is available by name, rather than by font file, can be loaded using the above "src=fontFamily" solution.

  • DOM removal

    document.head.removeChild(font.toStyleNode());

    (!) this only applies to fonts loaded from a remote resource. System fonts do not have an associated style node.

  • DOM (re)insertion

    document.head.appendChild(font.toStyleNode());

    (!) This is only required if you removed the font from the page, as the font is added to the DOM for use on-page during font loading already.

    (!) this only applies to fonts loaded from a remote resource. System fonts do not have an associated style node.

Font Metrics API

  • font.metrics.quadsize

    The font-indicated number of units per em

  • font.metrics.leading

    The font-indicated line height, in font units (this vaue is, often, useless)

  • font.metrics.ascent

    The maximum ascent for this font, as a ratio of the fontsize

  • font.metrics.decent

    The maximum descent for this font, as a ratio of the fontsize

  • font.metrics.weightclass

    The font-indicated weight class

(!) As system font files cannot be inspected, they do not have an associated font.metrics object. Instead, font.metrics is simply "false".

Text Metrics API

  • font.measureText(string, size)

    Compute the metrics for a particular string, with this font applied at the specific font size in pixels

  • font.measureText(...).width

    the width of the string in pixels, using this font at the specified font size

  • font.measureText(...).fontsize

    the specified font size

  • font.measureText(...).height

    the height of the string. This may differ from the font size

  • font.measureText(...).leading

    the actual line spacing for this font based on ten lines.

  • font.measureText(...).ascent

    the ascent above the baseline for this string

  • font.measureText(...).descent

    the descent below the baseline for this string

  • font.measureText(...).bounds

    An object {xmin:, ymin:, xmax:, ymax:} indicating the string's bounding box.

When font.src is set, the whole shebang kicks in, just like for new Image(), so make sure to define your onload() handler BEFORE setting the "src" property, or your handler may not get called.

Demonstrator

A demonstrator of this object can be found at:

Font.js is compatible with all browsers that support canvas and Object.defineProperty -- This includes all versions of Firefox, Chrome, Opera, IE and Safari that were 'current' (Firefox 9, Chrome 16, Opera 11.6, IE9, Safari 5.1) at the time Font.js was released.

Font.js will not work on IE8 or below due to the lack of Object.defineProperty - I recommend using the solution outlined in http://ie6update.com/ for websites that are not corporate intranet sites, because as a home user you have no excuse not to have upgraded to Internet Explorer 9 yet, or simply not using Internet Explorer if you're still using Windows XP. If you have friends or family that still use IE8 or below: intervene.

This code is (c) Mike "Pomax" Kamermans, 2012, but licensed under the MIT ("expat" flavour) license.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.