TKogure / jquery.kerning.js

Home Page:http://karappoinc.github.io/jquery.kerning.js/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Kerning

The jQuery kerning plugin specific with Japanese webfont.

Getting Started

Download the production version or the development version.

In your web page:

<script src="jquery.js"></script>
<script src="jquery.kerning.min.js"></script>
<script>
jQuery(function($) {
  $.getJSON("kerning-data.json" , function(_data) {
    $('h1').kerning({"data":_data});
  });
});
</script>
<h1>美しい文字</h1>

Examples / Documentation

http://karappoinc.github.io/jquery.kerning.js/

Code Status

  • master : Build Status
  • develop : Build Status

Release History

  • v0.1.1 : Change data format simpler.
  • v0.1.0 : First release.