typograf / jquery-typograf

Типографирование на лету
https://typograf.github.io/jquery-typograf/example.html
Other
6 stars 2 forks source link
jquery js typographer typography

Типографирование на лету

Позволяет типографировать текст при вводе в текстовое поле.

Использование с jQuery

<script src="https://github.com/typograf/jquery-typograf/raw/gh-pages/node_modules/typograf/dist/typograf.js"></script>
<script src="https://github.com/typograf/jquery-typograf/raw/gh-pages/jquery.autotypograf.js"></script>
...
<input type="text" val=""/>
<script>
    $('input').autotypograf({locale: ['ru', 'en-US']});
</script>

Использование без jQuery

<script src="https://github.com/typograf/jquery-typograf/raw/gh-pages/node_modules/typograf/dist/typograf.js"></script>
<script src="https://github.com/typograf/jquery-typograf/raw/gh-pages/autotypograf.vanilla.js"></script>
...
<input type="text" val="" id="text" />
<script>
    autotypograf(document.getElementById('text'), {locale: ['ru', 'en-US']});
</script>

Пример

Лицензия

MIT License