├── .eslintignore ├── .eslintrc ├── .gitignore ├── LICENSE ├── README.md ├── demo ├── index.html ├── main.js ├── screenshot.gif └── style.css ├── index.js └── package.json /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idiotWu/flex-text/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idiotWu/flex-text/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idiotWu/flex-text/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idiotWu/flex-text/HEAD/README.md -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idiotWu/flex-text/HEAD/demo/index.html -------------------------------------------------------------------------------- /demo/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idiotWu/flex-text/HEAD/demo/main.js -------------------------------------------------------------------------------- /demo/screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idiotWu/flex-text/HEAD/demo/screenshot.gif -------------------------------------------------------------------------------- /demo/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idiotWu/flex-text/HEAD/demo/style.css -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idiotWu/flex-text/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idiotWu/flex-text/HEAD/package.json --------------------------------------------------------------------------------