Skip to content

typograf/jquery-typograf

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

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

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

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

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

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

MIT License