Note: v1.x supported getting a full list of fonts with Flash; v2.x drops support for Flash.
Detects available system fonts with JavaScript, from a list of common fonts.
See a demo. You can edit the sample text.
<script src="lib/font-detective.js"></script>
<script>
FontDetective.each(function(font){
$("<option>")
.val(font)
.text(font.name)
.appendTo("select");
font.name; // e.g. 'Arial'
font.toString(); // e.g. '"Arial"'
});
FontDetective.all(function(fonts){
console.log(fonts);
});
</script>
- Calls back with a
Font
every time a font is detected and tested - Fonts are tested in chunks to avoid totally freezing the page
- Calls back with an
Array
ofFont
s when all fonts are detected and tested
- Starts detecting fonts immediately
- Not needed if you're going to call
all
oreach
right away
- Fonts are returned as instances of this class
- The
font.name
property can be used to display the name of the font - The
font
can be used anywhere you'd use afont-family
(e.g.div.style.fontFamily = font
)
For detecting fonts from Node.js, see font-manager
MIT-licensed, see LICENSE for details