[
  {
    "path": ".gitignore",
    "content": "node_modules\n"
  },
  {
    "path": ".jshintrc",
    "content": "{\n  \"predef\": [\n    \"document\",\n    \"window\",\n    \"-Promise\",\n    \"visit\",\n    \"fillIn\",\n    \"click\",\n    \"find\",\n    \"findWithAssert\"\n  ],\n  \"browser\": true,\n  \"boss\": true,\n  \"curly\": true,\n  \"debug\": false,\n  \"devel\": true,\n  \"eqeqeq\": true,\n  \"evil\": true,\n  \"forin\": false,\n  \"immed\": false,\n  \"laxbreak\": false,\n  \"newcap\": true,\n  \"noarg\": true,\n  \"noempty\": false,\n  \"nonew\": false,\n  \"nomen\": false,\n  \"onevar\": false,\n  \"plusplus\": false,\n  \"regexp\": false,\n  \"undef\": true,\n  \"sub\": true,\n  \"strict\": false,\n  \"white\": false,\n  \"eqnull\": true,\n  \"esnext\": true,\n  \"unused\": true\n}\n"
  },
  {
    "path": ".scss-lint.yml",
    "content": "# Default application configuration that all configurations inherit from.\n\nscss_files: \"src/scss\"\nplugin_directories: ['.scss-linters']\n\n# List of gem names to load custom linters from (make sure they are already\n# installed)\nplugin_gems: []\n\n# Default severity of all linters.\nseverity: warning\n\nlinters:\n  BangFormat:\n    enabled: true\n    space_before_bang: true\n    space_after_bang: false\n\n  BemDepth:\n    enabled: false\n    max_elements: 1\n\n  BorderZero:\n    enabled: true\n    convention: zero # or `none`\n\n  ChainedClasses:\n    enabled: false\n\n  ColorKeyword:\n    enabled: true\n\n  ColorVariable:\n    enabled: true\n\n  Comment:\n    enabled: true\n    style: silent\n\n  DebugStatement:\n    enabled: true\n\n  DeclarationOrder:\n    enabled: true\n\n  DisableLinterReason:\n    enabled: false\n\n  DuplicateProperty:\n    enabled: true\n\n  ElsePlacement:\n    enabled: true\n    style: same_line # or 'new_line'\n\n  EmptyLineBetweenBlocks:\n    enabled: true\n    ignore_single_line_blocks: true\n\n  EmptyRule:\n    enabled: true\n\n  ExtendDirective:\n    enabled: false\n\n  FinalNewline:\n    enabled: true\n    present: true\n\n  HexLength:\n    enabled: false\n    style: short # or 'long'\n\n  HexNotation:\n    enabled: true\n    style: lowercase # or 'uppercase'\n\n  HexValidation:\n    enabled: true\n\n  IdSelector:\n    enabled: true\n\n  ImportantRule:\n    enabled: true\n\n  ImportPath:\n    enabled: true\n    leading_underscore: false\n    filename_extension: false\n\n  Indentation:\n    enabled: true\n    allow_non_nested_indentation: false\n    character: space # or 'tab'\n    width: 2\n\n  LeadingZero:\n    enabled: true\n    style: include_zero # or 'exclude_zero'\n\n  MergeableSelector:\n    enabled: true\n    force_nesting: true\n\n  NameFormat:\n    enabled: true\n    allow_leading_underscore: true\n    convention: hyphenated_lowercase # or 'camel_case', or 'snake_case', or a regex pattern\n\n  NestingDepth:\n    enabled: true\n    max_depth: 4\n    ignore_parent_selectors: false\n\n  PlaceholderInExtend:\n    enabled: false\n\n  PrivateNamingConvention:\n    enabled: false\n    prefix: _\n\n  PropertyCount:\n    enabled: true\n    include_nested: false\n    max_properties: 10\n\n  PropertySortOrder:\n    enabled: true\n    ignore_unspecified: false\n    min_properties: 2\n    separate_groups: false\n\n  PropertySpelling:\n    enabled: true\n    extra_properties: []\n    disabled_properties: []\n\n  PropertyUnits:\n    enabled: true\n    global: [\n      'ch', 'em', 'ex', 'rem',                 # Font-relative lengths\n      'cm', 'in', 'mm', 'pc', 'pt', 'px', 'q', # Absolute lengths\n      'vh', 'vw', 'vmin', 'vmax',              # Viewport-percentage lengths\n      'deg', 'grad', 'rad', 'turn',            # Angle\n      'ms', 's',                               # Duration\n      'Hz', 'kHz',                             # Frequency\n      'dpi', 'dpcm', 'dppx',                   # Resolution\n      '%']                                     # Other\n    properties: {}\n\n  PseudoElement:\n    enabled: true\n\n  QualifyingElement:\n    enabled: true\n    allow_element_with_attribute: false\n    allow_element_with_class: false\n    allow_element_with_id: false\n\n  SelectorDepth:\n    enabled: true\n    max_depth: 2\n\n  SelectorFormat:\n    enabled: true\n    convention: hyphenated_lowercase # or 'strict_BEM', or 'hyphenated_BEM', or 'snake_case', or 'camel_case', or a regex pattern\n\n  Shorthand:\n    enabled: true\n    allowed_shorthands: [1, 2, 3]\n\n  SingleLinePerProperty:\n    enabled: true\n    allow_single_line_rule_sets: true\n\n  SingleLinePerSelector:\n    enabled: true\n\n  SpaceAfterComma:\n    enabled: true\n    style: one_space # or 'no_space', or 'at_least_one_space'\n\n  SpaceAfterPropertyColon:\n    enabled: true\n    style: one_space # or 'no_space', or 'at_least_one_space', or 'aligned'\n\n  SpaceAfterPropertyName:\n    enabled: true\n\n  SpaceAfterVariableColon:\n    enabled: false\n    style: one_space # or 'no_space', 'at_least_one_space' or 'one_space_or_newline'\n\n  SpaceAfterVariableName:\n    enabled: true\n\n  SpaceAroundOperator:\n    enabled: true\n    style: one_space # or 'at_least_one_space', or 'no_space'\n\n  SpaceBeforeBrace:\n    enabled: true\n    style: space # or 'new_line'\n    allow_single_line_padding: false\n\n  SpaceBetweenParens:\n    enabled: true\n    spaces: 0\n\n  StringQuotes:\n    enabled: true\n    style: double_quotes # or single_quotes\n\n  TrailingSemicolon:\n    enabled: true\n\n  TrailingWhitespace:\n    enabled: true\n\n  TrailingZero:\n    enabled: false\n\n  TransitionAll:\n    enabled: false\n\n  UnnecessaryMantissa:\n    enabled: true\n\n  UnnecessaryParentReference:\n    enabled: true\n\n  UrlFormat:\n    enabled: true\n\n  UrlQuotes:\n    enabled: true\n\n  VariableForProperty:\n    enabled: false\n    properties: []\n\n  VendorPrefix:\n    enabled: true\n    identifier_list: base\n    additional_identifiers: []\n    excluded_identifiers: []\n\n  ZeroUnit:\n    enabled: true\n\n  Compass::*:\n    enabled: false\n"
  },
  {
    "path": "CONTRIBUTING.md",
    "content": "# contributing to txtwav\n\nWe love pull requests from everyone. By participating in this project, you\nagree to abide by the still life [code of conduct].\n\n[code of conduct]: https://www.stilllife.studio/conduct\n\nHere are some ways *you* can contribute:\n\n* by using alpha, beta, and prerelease versions\n* by reporting bugs\n* by suggesting new features\n* by writing or editing documentation\n* by writing specifications\n* by writing code ( **no patch is too small** : fix typos, add comments, clean up inconsistent whitespace )\n* by refactoring code\n* by closing [issues][]\n* by reviewing patches\n\n[issues]: https://github.com/still-life-studio/txtwav/issues\n\n## Submitting an Issue\nWe use the [GitHub issue tracker][issues] to track bugs and features. Before\nsubmitting a bug report or feature request, check to make sure it hasn't\nalready been submitted. When submitting a bug report, please include a [Gist][]\nthat includes a stack trace and any details that may be necessary to reproduce\nthe bug, including your gem version, Ruby version, and operating system.\nIdeally, a bug report should include a pull request with failing specs.\n\n[gist]: https://gist.github.com/\n\n## Submitting a Pull Request\n1. [Fork][fork] the [official repository][repo].\n2. [Create a topic branch.][branch]\n3. Implement your feature or bug fix.\n4. Add, commit, and push your changes.\n5. [Submit a pull request.][pr]\n\n[repo]: https://github.com/still-life-studio/txtwav/tree/master\n[fork]: https://help.github.com/articles/fork-a-repo/\n[branch]: https://help.github.com/articles/creating-and-deleting-branches-within-your-repository/\n[pr]: https://help.github.com/articles/using-pull-requests/\n[middleman]: https://github.com/middleman/middleman-heroku/blob/master/CONTRIBUTING.md\n[thoughtbot]: https://github.com/thoughtbot/factory_girl/blob/master/CONTRIBUTING.md\n\nThanks to thoughtbot[thoughtbot], and Middleman[middleman] for inspiration and\nideas.\n"
  },
  {
    "path": "LICENSE.md",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Lionel T\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "README.md",
    "content": "# txt.wav\n\n[![npm version](https://badge.fury.io/js/txt.wav.svg)](https://npmjs.com/package/txt.wav)\n![Code Climate](https://codeclimate.com/github/still-life-studio/txt.wav/badges/gpa.svg)\n[![CDNJS](https://img.shields.io/cdnjs/v/txt.wav.svg)](https://cdnjs.com/libraries/txt.wav)\n\nsome weird text animations the internet deserves.\n\ncheck out the [demos](http://www.stilllife.studio/txtwav?utm_source=github)\n\n#### NPM\n\n```\nnpm install --save txt.wav\n```\n\n#### CDN\n\nSee [https://cdnjs.com/libraries/txt.wav](https://cdnjs.com/libraries/txt.wav)\n\n## basic usage\n\n1. include the `css` and `js` files from the `dist` folder.\n\n2. add the class `txtwav` to an element you want to animate.\n\n3. add the class for the specific animation you want to include from the\nfollowing:\n\n* `slow`\n* `vibe`\n* `bounce`\n* `flip`\n\nfull example:\n```html\n<h1 class=\"txtwav slow\">true freaks only</h1>\n```\n\n## about Still Life\n\n<img src=\"http://www.stilllife.studio/images/still-life-logo.svg\" width=\"150\">\n\ntxt.wav is maintained by Still Life.\n\nwe love open source software. see our other\n[projects](http://www.stilllife.studio/?utm_source=github#work) or [hire\nus](http://www.stilllife.studio/?utm_source=github#contact) to design and develop your product.\n\n\n## license\ntxt.wav is licensed under the MIT license. (http://opensource.org/licenses/MIT)\n\n"
  },
  {
    "path": "dist/css/txt.wav.css",
    "content": "@keyframes slow-wave {\n  from {\n    transform: translateY(0); }\n  to {\n    transform: translateY(-10px); } }\n\n.txtwav.slow span {\n  animation-direction: alternate;\n  animation-duration: 3s;\n  animation-iteration-count: infinite;\n  animation-name: slow-wave;\n  display: inline-block; }\n\n.txtwav.slow :nth-child(25n + 0) {\n  animation-delay: -6s; }\n\n.txtwav.slow :nth-child(25n + 1) {\n  animation-delay: -5.76s; }\n\n.txtwav.slow :nth-child(25n + 2) {\n  animation-delay: -5.52s; }\n\n.txtwav.slow :nth-child(25n + 3) {\n  animation-delay: -5.28s; }\n\n.txtwav.slow :nth-child(25n + 4) {\n  animation-delay: -5.04s; }\n\n.txtwav.slow :nth-child(25n + 5) {\n  animation-delay: -4.8s; }\n\n.txtwav.slow :nth-child(25n + 6) {\n  animation-delay: -4.56s; }\n\n.txtwav.slow :nth-child(25n + 7) {\n  animation-delay: -4.32s; }\n\n.txtwav.slow :nth-child(25n + 8) {\n  animation-delay: -4.08s; }\n\n.txtwav.slow :nth-child(25n + 9) {\n  animation-delay: -3.84s; }\n\n.txtwav.slow :nth-child(25n + 10) {\n  animation-delay: -3.6s; }\n\n.txtwav.slow :nth-child(25n + 11) {\n  animation-delay: -3.36s; }\n\n.txtwav.slow :nth-child(25n + 12) {\n  animation-delay: -3.12s; }\n\n.txtwav.slow :nth-child(25n + 13) {\n  animation-delay: -2.88s; }\n\n.txtwav.slow :nth-child(25n + 14) {\n  animation-delay: -2.64s; }\n\n.txtwav.slow :nth-child(25n + 15) {\n  animation-delay: -2.4s; }\n\n.txtwav.slow :nth-child(25n + 16) {\n  animation-delay: -2.16s; }\n\n.txtwav.slow :nth-child(25n + 17) {\n  animation-delay: -1.92s; }\n\n.txtwav.slow :nth-child(25n + 18) {\n  animation-delay: -1.68s; }\n\n.txtwav.slow :nth-child(25n + 19) {\n  animation-delay: -1.44s; }\n\n.txtwav.slow :nth-child(25n + 20) {\n  animation-delay: -1.2s; }\n\n.txtwav.slow :nth-child(25n + 21) {\n  animation-delay: -0.96s; }\n\n.txtwav.slow :nth-child(25n + 22) {\n  animation-delay: -0.72s; }\n\n.txtwav.slow :nth-child(25n + 23) {\n  animation-delay: -0.48s; }\n\n.txtwav.slow :nth-child(25n + 24) {\n  animation-delay: -0.24s; }\n\n@keyframes bounce-wave {\n  from {\n    transform: translateY(0); }\n  to {\n    transform: translateY(-10px); } }\n\n.txtwav.bounce span {\n  animation-direction: alternate;\n  animation-duration: 0.3s;\n  animation-iteration-count: infinite;\n  animation-name: bounce-wave;\n  display: inline-block; }\n\n.txtwav.bounce :nth-child(25n + 0) {\n  animation-delay: -0.6s; }\n\n.txtwav.bounce :nth-child(25n + 1) {\n  animation-delay: -0.576s; }\n\n.txtwav.bounce :nth-child(25n + 2) {\n  animation-delay: -0.552s; }\n\n.txtwav.bounce :nth-child(25n + 3) {\n  animation-delay: -0.528s; }\n\n.txtwav.bounce :nth-child(25n + 4) {\n  animation-delay: -0.504s; }\n\n.txtwav.bounce :nth-child(25n + 5) {\n  animation-delay: -0.48s; }\n\n.txtwav.bounce :nth-child(25n + 6) {\n  animation-delay: -0.456s; }\n\n.txtwav.bounce :nth-child(25n + 7) {\n  animation-delay: -0.432s; }\n\n.txtwav.bounce :nth-child(25n + 8) {\n  animation-delay: -0.408s; }\n\n.txtwav.bounce :nth-child(25n + 9) {\n  animation-delay: -0.384s; }\n\n.txtwav.bounce :nth-child(25n + 10) {\n  animation-delay: -0.36s; }\n\n.txtwav.bounce :nth-child(25n + 11) {\n  animation-delay: -0.336s; }\n\n.txtwav.bounce :nth-child(25n + 12) {\n  animation-delay: -0.312s; }\n\n.txtwav.bounce :nth-child(25n + 13) {\n  animation-delay: -0.288s; }\n\n.txtwav.bounce :nth-child(25n + 14) {\n  animation-delay: -0.264s; }\n\n.txtwav.bounce :nth-child(25n + 15) {\n  animation-delay: -0.24s; }\n\n.txtwav.bounce :nth-child(25n + 16) {\n  animation-delay: -0.216s; }\n\n.txtwav.bounce :nth-child(25n + 17) {\n  animation-delay: -0.192s; }\n\n.txtwav.bounce :nth-child(25n + 18) {\n  animation-delay: -0.168s; }\n\n.txtwav.bounce :nth-child(25n + 19) {\n  animation-delay: -0.144s; }\n\n.txtwav.bounce :nth-child(25n + 20) {\n  animation-delay: -0.12s; }\n\n.txtwav.bounce :nth-child(25n + 21) {\n  animation-delay: -0.096s; }\n\n.txtwav.bounce :nth-child(25n + 22) {\n  animation-delay: -0.072s; }\n\n.txtwav.bounce :nth-child(25n + 23) {\n  animation-delay: -0.048s; }\n\n.txtwav.bounce :nth-child(25n + 24) {\n  animation-delay: -0.024s; }\n\n@keyframes vibe-wave {\n  from {\n    transform: translateY(0); }\n  to {\n    transform: translateY(4px); } }\n\n.txtwav.vibe span {\n  animation-direction: alternate;\n  animation-duration: 0.08s;\n  animation-iteration-count: infinite;\n  animation-name: vibe-wave;\n  display: inline-block; }\n\n.txtwav.vibe :nth-child(10n + 0) {\n  animation-delay: -0.16s; }\n\n.txtwav.vibe :nth-child(10n + 1) {\n  animation-delay: -0.144s; }\n\n.txtwav.vibe :nth-child(10n + 2) {\n  animation-delay: -0.128s; }\n\n.txtwav.vibe :nth-child(10n + 3) {\n  animation-delay: -0.112s; }\n\n.txtwav.vibe :nth-child(10n + 4) {\n  animation-delay: -0.096s; }\n\n.txtwav.vibe :nth-child(10n + 5) {\n  animation-delay: -0.08s; }\n\n.txtwav.vibe :nth-child(10n + 6) {\n  animation-delay: -0.064s; }\n\n.txtwav.vibe :nth-child(10n + 7) {\n  animation-delay: -0.048s; }\n\n.txtwav.vibe :nth-child(10n + 8) {\n  animation-delay: -0.032s; }\n\n.txtwav.vibe :nth-child(10n + 9) {\n  animation-delay: -0.016s; }\n\n@keyframes flip-wave-0 {\n  5% {\n    transform: translate3d(0, -16px, 0) rotate(720deg); }\n  10% {\n    transform: translate3d(0, 0, 0) rotate(720deg); }\n  100% {\n    transform: translate3d(0, 0, 0) rotate(720deg); } }\n\n.txtwav.flip :nth-child(20n + 0) {\n  animation-duration: 4s;\n  animation-iteration-count: infinite;\n  animation-name: flip-wave-0;\n  display: inline-block; }\n\n@keyframes flip-wave-1 {\n  10% {\n    transform: translate3d(0, -16px, 0) rotate(720deg); }\n  15% {\n    transform: translate3d(0, 0, 0) rotate(720deg); }\n  100% {\n    transform: translate3d(0, 0, 0) rotate(720deg); } }\n\n.txtwav.flip :nth-child(20n + 1) {\n  animation-duration: 4s;\n  animation-iteration-count: infinite;\n  animation-name: flip-wave-1;\n  display: inline-block; }\n\n@keyframes flip-wave-2 {\n  15% {\n    transform: translate3d(0, -16px, 0) rotate(720deg); }\n  20% {\n    transform: translate3d(0, 0, 0) rotate(720deg); }\n  100% {\n    transform: translate3d(0, 0, 0) rotate(720deg); } }\n\n.txtwav.flip :nth-child(20n + 2) {\n  animation-duration: 4s;\n  animation-iteration-count: infinite;\n  animation-name: flip-wave-2;\n  display: inline-block; }\n\n@keyframes flip-wave-3 {\n  20% {\n    transform: translate3d(0, -16px, 0) rotate(720deg); }\n  25% {\n    transform: translate3d(0, 0, 0) rotate(720deg); }\n  100% {\n    transform: translate3d(0, 0, 0) rotate(720deg); } }\n\n.txtwav.flip :nth-child(20n + 3) {\n  animation-duration: 4s;\n  animation-iteration-count: infinite;\n  animation-name: flip-wave-3;\n  display: inline-block; }\n\n@keyframes flip-wave-4 {\n  25% {\n    transform: translate3d(0, -16px, 0) rotate(720deg); }\n  30% {\n    transform: translate3d(0, 0, 0) rotate(720deg); }\n  100% {\n    transform: translate3d(0, 0, 0) rotate(720deg); } }\n\n.txtwav.flip :nth-child(20n + 4) {\n  animation-duration: 4s;\n  animation-iteration-count: infinite;\n  animation-name: flip-wave-4;\n  display: inline-block; }\n\n@keyframes flip-wave-5 {\n  30% {\n    transform: translate3d(0, -16px, 0) rotate(720deg); }\n  35% {\n    transform: translate3d(0, 0, 0) rotate(720deg); }\n  100% {\n    transform: translate3d(0, 0, 0) rotate(720deg); } }\n\n.txtwav.flip :nth-child(20n + 5) {\n  animation-duration: 4s;\n  animation-iteration-count: infinite;\n  animation-name: flip-wave-5;\n  display: inline-block; }\n\n@keyframes flip-wave-6 {\n  35% {\n    transform: translate3d(0, -16px, 0) rotate(720deg); }\n  40% {\n    transform: translate3d(0, 0, 0) rotate(720deg); }\n  100% {\n    transform: translate3d(0, 0, 0) rotate(720deg); } }\n\n.txtwav.flip :nth-child(20n + 6) {\n  animation-duration: 4s;\n  animation-iteration-count: infinite;\n  animation-name: flip-wave-6;\n  display: inline-block; }\n\n@keyframes flip-wave-7 {\n  40% {\n    transform: translate3d(0, -16px, 0) rotate(720deg); }\n  45% {\n    transform: translate3d(0, 0, 0) rotate(720deg); }\n  100% {\n    transform: translate3d(0, 0, 0) rotate(720deg); } }\n\n.txtwav.flip :nth-child(20n + 7) {\n  animation-duration: 4s;\n  animation-iteration-count: infinite;\n  animation-name: flip-wave-7;\n  display: inline-block; }\n\n@keyframes flip-wave-8 {\n  45% {\n    transform: translate3d(0, -16px, 0) rotate(720deg); }\n  50% {\n    transform: translate3d(0, 0, 0) rotate(720deg); }\n  100% {\n    transform: translate3d(0, 0, 0) rotate(720deg); } }\n\n.txtwav.flip :nth-child(20n + 8) {\n  animation-duration: 4s;\n  animation-iteration-count: infinite;\n  animation-name: flip-wave-8;\n  display: inline-block; }\n\n@keyframes flip-wave-9 {\n  50% {\n    transform: translate3d(0, -16px, 0) rotate(720deg); }\n  55% {\n    transform: translate3d(0, 0, 0) rotate(720deg); }\n  100% {\n    transform: translate3d(0, 0, 0) rotate(720deg); } }\n\n.txtwav.flip :nth-child(20n + 9) {\n  animation-duration: 4s;\n  animation-iteration-count: infinite;\n  animation-name: flip-wave-9;\n  display: inline-block; }\n\n@keyframes flip-wave-10 {\n  55% {\n    transform: translate3d(0, -16px, 0) rotate(720deg); }\n  60% {\n    transform: translate3d(0, 0, 0) rotate(720deg); }\n  100% {\n    transform: translate3d(0, 0, 0) rotate(720deg); } }\n\n.txtwav.flip :nth-child(20n + 10) {\n  animation-duration: 4s;\n  animation-iteration-count: infinite;\n  animation-name: flip-wave-10;\n  display: inline-block; }\n\n@keyframes flip-wave-11 {\n  60% {\n    transform: translate3d(0, -16px, 0) rotate(720deg); }\n  65% {\n    transform: translate3d(0, 0, 0) rotate(720deg); }\n  100% {\n    transform: translate3d(0, 0, 0) rotate(720deg); } }\n\n.txtwav.flip :nth-child(20n + 11) {\n  animation-duration: 4s;\n  animation-iteration-count: infinite;\n  animation-name: flip-wave-11;\n  display: inline-block; }\n\n@keyframes flip-wave-12 {\n  65% {\n    transform: translate3d(0, -16px, 0) rotate(720deg); }\n  70% {\n    transform: translate3d(0, 0, 0) rotate(720deg); }\n  100% {\n    transform: translate3d(0, 0, 0) rotate(720deg); } }\n\n.txtwav.flip :nth-child(20n + 12) {\n  animation-duration: 4s;\n  animation-iteration-count: infinite;\n  animation-name: flip-wave-12;\n  display: inline-block; }\n\n@keyframes flip-wave-13 {\n  70% {\n    transform: translate3d(0, -16px, 0) rotate(720deg); }\n  75% {\n    transform: translate3d(0, 0, 0) rotate(720deg); }\n  100% {\n    transform: translate3d(0, 0, 0) rotate(720deg); } }\n\n.txtwav.flip :nth-child(20n + 13) {\n  animation-duration: 4s;\n  animation-iteration-count: infinite;\n  animation-name: flip-wave-13;\n  display: inline-block; }\n\n@keyframes flip-wave-14 {\n  75% {\n    transform: translate3d(0, -16px, 0) rotate(720deg); }\n  80% {\n    transform: translate3d(0, 0, 0) rotate(720deg); }\n  100% {\n    transform: translate3d(0, 0, 0) rotate(720deg); } }\n\n.txtwav.flip :nth-child(20n + 14) {\n  animation-duration: 4s;\n  animation-iteration-count: infinite;\n  animation-name: flip-wave-14;\n  display: inline-block; }\n\n@keyframes flip-wave-15 {\n  80% {\n    transform: translate3d(0, -16px, 0) rotate(720deg); }\n  85% {\n    transform: translate3d(0, 0, 0) rotate(720deg); }\n  100% {\n    transform: translate3d(0, 0, 0) rotate(720deg); } }\n\n.txtwav.flip :nth-child(20n + 15) {\n  animation-duration: 4s;\n  animation-iteration-count: infinite;\n  animation-name: flip-wave-15;\n  display: inline-block; }\n\n@keyframes flip-wave-16 {\n  85% {\n    transform: translate3d(0, -16px, 0) rotate(720deg); }\n  90% {\n    transform: translate3d(0, 0, 0) rotate(720deg); }\n  100% {\n    transform: translate3d(0, 0, 0) rotate(720deg); } }\n\n.txtwav.flip :nth-child(20n + 16) {\n  animation-duration: 4s;\n  animation-iteration-count: infinite;\n  animation-name: flip-wave-16;\n  display: inline-block; }\n\n@keyframes flip-wave-17 {\n  90% {\n    transform: translate3d(0, -16px, 0) rotate(720deg); }\n  95% {\n    transform: translate3d(0, 0, 0) rotate(720deg); }\n  100% {\n    transform: translate3d(0, 0, 0) rotate(720deg); } }\n\n.txtwav.flip :nth-child(20n + 17) {\n  animation-duration: 4s;\n  animation-iteration-count: infinite;\n  animation-name: flip-wave-17;\n  display: inline-block; }\n\n@keyframes flip-wave-18 {\n  95% {\n    transform: translate3d(0, -16px, 0) rotate(720deg); }\n  100% {\n    transform: translate3d(0, 0, 0) rotate(720deg); }\n  100% {\n    transform: translate3d(0, 0, 0) rotate(720deg); } }\n\n.txtwav.flip :nth-child(20n + 18) {\n  animation-duration: 4s;\n  animation-iteration-count: infinite;\n  animation-name: flip-wave-18;\n  display: inline-block; }\n\n@keyframes flip-wave-19 {\n  100% {\n    transform: translate3d(0, -16px, 0) rotate(720deg); }\n  105% {\n    transform: translate3d(0, 0, 0) rotate(720deg); }\n  100% {\n    transform: translate3d(0, 0, 0) rotate(720deg); } }\n\n.txtwav.flip :nth-child(20n + 19) {\n  animation-duration: 4s;\n  animation-iteration-count: infinite;\n  animation-name: flip-wave-19;\n  display: inline-block; }\n"
  },
  {
    "path": "dist/js/txt.wav.js",
    "content": "(function() {\n  'use strict';\n\n  var textWaveElements = document.getElementsByClassName('txtwav');\n\n  function spanWrapHelper(el, text) {\n    for(var i = 0; i < text.length; i++) {\n      var span = document.createElement('span');\n      span.innerHTML = text[i] === ' ' ? '&nbsp;' : text[i];\n      el.appendChild(span);\n    }\n  }\n\n  for (var i = 0, length = textWaveElements.length; i < length; i++) {\n    var el = textWaveElements[i],\n      text = el.textContent.trim();\n\n    el.innerHTML = '';\n    spanWrapHelper(el, text);\n  }\n}());\n"
  },
  {
    "path": "package.json",
    "content": "{\n  \"name\": \"txt.wav\",\n  \"version\": \"1.0.5\",\n  \"description\": \"Text animation library\",\n  \"main\": \"dist/js/txt.wav.js\",\n  \"files\": [\n    \"dist\",\n    \"src\"\n  ],\n  \"scripts\": {\n    \"test\": \"echo \\\"Error: no test specified\\\" && exit 1\",\n    \"build\": \"echo \\\"Compiling SCSS to CSS\\\" && node-sass --include-path scss src/scss/txt.wav.scss dist/css/txt.wav.css && echo \\\"Minifying CSS\\\" && cleancss -o dist/css/txt.wav.min.css dist/css/txt.wav.css && echo \\\"Minifying and Uglifying JS\\\" && uglifyjs --compress --mangle --output dist/js/txt.wav.min.js src/js/txt.wav.js && cp src/js/txt.wav.js dist/js/txt.wav.js\"\n  },\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git+https://github.com/still-life-studios/txt.wav.git\"\n  },\n  \"keywords\": [\n    \"text\",\n    \"animation\",\n    \"css\",\n    \"weirdos\"\n  ],\n  \"author\": \"Still Life Studios <hello@stilllife.studio> (https://www.stilllife.studio)\",\n  \"license\": \"ISC\",\n  \"bugs\": {\n    \"url\": \"https://github.com/still-life-studios/txt.wav/issues\"\n  },\n  \"homepage\": \"https://www.stilllife.studio/txtwav\",\n  \"devDependencies\": {\n    \"clean-css\": \"^3.4.19\",\n    \"node-sass\": \"^3.9.0\",\n    \"uglify-js\": \"^2.7.3\"\n  }\n}\n"
  },
  {
    "path": "src/js/txt.wav.js",
    "content": "(function() {\n  'use strict';\n\n  var textWaveElements = document.getElementsByClassName('txtwav');\n\n  function spanWrapHelper(el, text) {\n    for(var i = 0; i < text.length; i++) {\n      var span = document.createElement('span');\n      span.innerHTML = text[i] === ' ' ? '&nbsp;' : text[i];\n      el.appendChild(span);\n    }\n  }\n\n  for (var i = 0, length = textWaveElements.length; i < length; i++) {\n    var el = textWaveElements[i],\n      text = el.textContent.trim();\n\n    el.innerHTML = '';\n    spanWrapHelper(el, text);\n  }\n}());\n"
  },
  {
    "path": "src/scss/_bounce.scss",
    "content": "// Bounce-Wave\n$bounce-offset: -10px;\n$bounce-count: 25;\n$bounce-duration: 0.3;\n\n@keyframes bounce-wave {\n  from {\n    transform: translateY(0);\n  }\n\n  to {\n    transform: translateY($bounce-offset);\n  }\n}\n\n.txtwav.bounce span {\n  animation-direction: alternate;\n  animation-duration: #{$bounce-duration}s;\n  animation-iteration-count: infinite;\n  animation-name: bounce-wave;\n  display: inline-block;\n}\n\n@for $i from 0 to $bounce-count {\n  .txtwav.bounce :nth-child( #{$bounce-count}n + #{$i} ) {\n    animation-delay: -#{($bounce-count - $i) * 2 * $bounce-duration / $bounce-count }s;\n  }\n}\n"
  },
  {
    "path": "src/scss/_flip.scss",
    "content": "// Flip-Wave\n$flip-offset: -16px;\n$flip-count: 20;\n$flip-duration: 4;\n\n@for $i from 0 to $flip-count {\n  @keyframes flip-wave-#{$i} {\n    #{($i * 5) + 5}% {\n      transform: translate3d(0, -16px, 0) rotate(720deg);\n    }\n\n    #{($i * 5) + 10}% {\n      transform: translate3d(0, 0, 0) rotate(720deg);\n    }\n\n    100% {\n      transform: translate3d(0, 0, 0) rotate(720deg);\n    }\n  }\n\n  .txtwav.flip :nth-child( #{$flip-count}n + #{$i} ) {\n    animation-duration: #{$flip-duration}s;\n    animation-iteration-count: infinite;\n    animation-name: flip-wave-#{$i};\n    display: inline-block;\n  }\n\n}\n"
  },
  {
    "path": "src/scss/_slow.scss",
    "content": "// Slow-Wave\n$slow-offset: -10px;\n$slow-count: 25;\n$slow-duration: 3;\n\n@keyframes slow-wave {\n  from {\n    transform: translateY(0);\n  }\n\n  to {\n    transform: translateY($slow-offset);\n  }\n}\n\n.txtwav.slow span {\n  animation-direction: alternate;\n  animation-duration: #{$slow-duration}s;\n  animation-iteration-count: infinite;\n  animation-name: slow-wave;\n  display: inline-block;\n}\n\n@for $i from 0 to $slow-count {\n  .txtwav.slow :nth-child( #{$slow-count}n + #{$i} ) {\n    animation-delay: -#{($slow-count - $i) * 2 * $slow-duration / $slow-count }s;\n  }\n}\n"
  },
  {
    "path": "src/scss/_vibe.scss",
    "content": "// Vibe-Wave\n$vibe-offset: 4px;\n$vibe-count: 10;\n$vibe-duration: 0.08;\n\n@keyframes vibe-wave {\n  from {\n    transform: translateY(0);\n  }\n\n  to {\n    transform: translateY($vibe-offset);\n  }\n}\n\n.txtwav.vibe span {\n  animation-direction: alternate;\n  animation-duration: #{$vibe-duration}s;\n  animation-iteration-count: infinite;\n  animation-name: vibe-wave;\n  display: inline-block;\n}\n\n@for $i from 0 to $vibe-count {\n  .txtwav.vibe :nth-child( #{$vibe-count}n + #{$i} ) {\n    animation-delay: -#{($vibe-count - $i) * 2 * $vibe-duration / $vibe-count }s;\n  }\n}\n"
  },
  {
    "path": "src/scss/txt.wav.scss",
    "content": "@import \"slow\";\n@import \"bounce\";\n@import \"vibe\";\n@import \"flip\";\n"
  }
]