Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/flekschas/flowtype
Rewrite of FlowType in ES6 which doesn't require jQuery
https://github.com/flekschas/flowtype
es6 flowtype font no-libraries typography web-typography
Last synced: 9 days ago
JSON representation
Rewrite of FlowType in ES6 which doesn't require jQuery
- Host: GitHub
- URL: https://github.com/flekschas/flowtype
- Owner: flekschas
- License: mit
- Created: 2018-09-24T13:38:43.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2018-09-24T19:00:42.000Z (about 6 years ago)
- Last Synced: 2024-09-23T11:06:10.808Z (about 2 months ago)
- Topics: es6, flowtype, font, no-libraries, typography, web-typography
- Language: JavaScript
- Homepage: https://flekschas.github.io/flowtype/
- Size: 99.6 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# ES6 FlowType.js
[![npm version](https://img.shields.io/npm/v/flowtype-es.svg)](https://www.npmjs.com/package/flowtype-es)
[![build status](https://travis-ci.org/flekschas/flowtype.svg?branch=master)](https://travis-ci.org/flekschas/flowtype)
[![code style prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg)](https://github.com/prettier/prettier)
[![flowtype demo](https://img.shields.io/badge/demo-online-6ae3c7.svg)](https://flekschas.github.io/flowtype/)> FlowType ES is a rewrite of the awesome [FlowType.JS](http://simplefocus.com/flowtype/) in ES6. It doesn't require jQuery and triggers recalculation on requestAnimationFrame.
## Install
```
npm install flowtype-es
```## API
```javascript
import createFlowtype from "flowtype-es";
```### `const flowtype = createFlowtype(element, options)`
Creates and attaches event listeners for automatic recalculation of the font size upon resizing the `element`.
- `element` is a reference to the dom element for which the font size should be calculated automatically.
- `options` lets you customize the calculation of the font size.**Returns** an object with `update()` and `destroy()`.
### `flowtype.update()`
Triggers a recalculation of the font size.
### `flowtype.destroy()`
Removes all event listeners and stops the automatic recalculation of the font size upon resizing the `element`.
### Options
| Option | Description | Dtype | Default |
| --------- | ---------------------------------------------------------------------- | ----- | ------- |
| maximum | Max width of the element until the font size is controlled | int | 1200 |
| minimum | Min width of the element until the font size is controlled | int | 500 |
| maxFont | Max font size ever used | int | 40 |
| minFont | Min font size ever used | int | 12 |
| fontRatio | Font ratio for determining the font size based on the elements's width | int | 30 |## Example
```javascript
import createFlowtype from "flowtype-es";const flowtype = createFlowtype(document.body, {
maximum: 1200,
minimum: 500,
maxFont: 40,
minFont: 12,
fontRatio: 30
});
```