This provides a Web Component for an interface similar to Coverflow.
npm install @trovster/coverflow --saveThese are Web Components and must be imported before the custom elements can be used.
<script type="module">
  import '@trovster/coverflow/src/Coverflow.js';
</script>You should create a list of images and then wrap them in <cover-flow> to turn
them into a Coverflow component.
<cover-flow>
  <ul>
    <li><img src="#" /></li>
    <li><img src="#" /></li>
    <li><img src="#" /></li>
    <li><img src="#" /></li>
  </ul>
</cover-flow>You should set the background using the --bg CSS variable. This is used to mask
the relection correctly. This defaults to #fff.
To scan the project for linting and formatting errors, run:
npm run lintTo automatically fix linting and formatting errors, run:
npm run formatTo start a local development server that serves the basic demo located in
docs/index.html, run:
npm startFor most of the tools, the configuration is in the package.json to minimize
the amount of files in your project.
If you customize the configuration a lot, you can consider moving them to individual files.
