├── .babelrc ├── .editorconfig ├── .eslintrc ├── .gitignore ├── LICENSE ├── README.md ├── docs ├── .gitignore ├── bounty.PNG ├── coconut.png ├── example.gif ├── example2.gif ├── header.png └── logo.gif ├── examples ├── assets │ ├── WHHoxtonWeb-Regular.woff │ └── itvreem.woff ├── index.html ├── initial.html ├── pause.html └── restart.html ├── lib └── bounty.js ├── package.json ├── src ├── bounty.js ├── index.js ├── loop.js ├── selection │ ├── append.js │ ├── attr.js │ ├── index.js │ ├── namespaces.js │ ├── select.js │ ├── style.js │ └── text.js └── transition.js ├── webpack.config.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015", "stage-0"] 3 | } 4 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderitual/bounty/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderitual/bounty/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .idea/ 3 | package-lock.json 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderitual/bounty/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderitual/bounty/HEAD/README.md -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /docs/bounty.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderitual/bounty/HEAD/docs/bounty.PNG -------------------------------------------------------------------------------- /docs/coconut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderitual/bounty/HEAD/docs/coconut.png -------------------------------------------------------------------------------- /docs/example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderitual/bounty/HEAD/docs/example.gif -------------------------------------------------------------------------------- /docs/example2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderitual/bounty/HEAD/docs/example2.gif -------------------------------------------------------------------------------- /docs/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderitual/bounty/HEAD/docs/header.png -------------------------------------------------------------------------------- /docs/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderitual/bounty/HEAD/docs/logo.gif -------------------------------------------------------------------------------- /examples/assets/WHHoxtonWeb-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderitual/bounty/HEAD/examples/assets/WHHoxtonWeb-Regular.woff -------------------------------------------------------------------------------- /examples/assets/itvreem.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderitual/bounty/HEAD/examples/assets/itvreem.woff -------------------------------------------------------------------------------- /examples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderitual/bounty/HEAD/examples/index.html -------------------------------------------------------------------------------- /examples/initial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderitual/bounty/HEAD/examples/initial.html -------------------------------------------------------------------------------- /examples/pause.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderitual/bounty/HEAD/examples/pause.html -------------------------------------------------------------------------------- /examples/restart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderitual/bounty/HEAD/examples/restart.html -------------------------------------------------------------------------------- /lib/bounty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderitual/bounty/HEAD/lib/bounty.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderitual/bounty/HEAD/package.json -------------------------------------------------------------------------------- /src/bounty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderitual/bounty/HEAD/src/bounty.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './bounty'; 2 | -------------------------------------------------------------------------------- /src/loop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderitual/bounty/HEAD/src/loop.js -------------------------------------------------------------------------------- /src/selection/append.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderitual/bounty/HEAD/src/selection/append.js -------------------------------------------------------------------------------- /src/selection/attr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderitual/bounty/HEAD/src/selection/attr.js -------------------------------------------------------------------------------- /src/selection/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderitual/bounty/HEAD/src/selection/index.js -------------------------------------------------------------------------------- /src/selection/namespaces.js: -------------------------------------------------------------------------------- 1 | export default { 2 | svg: 'http://www.w3.org/2000/svg' 3 | }; 4 | -------------------------------------------------------------------------------- /src/selection/select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderitual/bounty/HEAD/src/selection/select.js -------------------------------------------------------------------------------- /src/selection/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderitual/bounty/HEAD/src/selection/style.js -------------------------------------------------------------------------------- /src/selection/text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderitual/bounty/HEAD/src/selection/text.js -------------------------------------------------------------------------------- /src/transition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderitual/bounty/HEAD/src/transition.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderitual/bounty/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderitual/bounty/HEAD/yarn.lock --------------------------------------------------------------------------------