# ember-cli-spinjs **Repository Path**: mirrors_stefanpenner/ember-cli-spinjs ## Basic Information - **Project Name**: ember-cli-spinjs - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-26 - **Last Updated**: 2026-05-24 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Ember-cli Spinjs [![Build Status](https://travis-ci.org/kiwiupover/ember-cli-spinjs.svg)](https://travis-ci.org/kiwiupover/ember-cli-spinjs) ## Install In the root of your ember-cli project directory, run: ```bash npm install --save-dev ember-cli-spinjs ember generate ember-cli-spinjs ``` ## Usage Now you in your templates you can use `{{ember-spinner}}` to add a spinner to your page. [View Demo](http://ember-cli-spinjs.s3-website-us-east-1.amazonaws.com) ```handlebars {{ember-spinner}} ``` Default ### With a config file ```handlebars {{ember-spinner config='standard'}} ``` Add two folders to your app the first called `config` and in that folder another called `ember-spinner` with a file called `standard.js` ```javascript export default { color: blue, lines: 10, length: 30 } ``` ```handlebars {{ember-spinner lines=11 length=16 raidus=30 width=8 rotate=10 speed='1.1' color="#ffc52e"}} ``` Spinning Lines ```handlebars {{ember-spinner lines=18 raidus=10 width=5 rotate=0 speed="3.4" color='blue'}} ``` Fast spinning blue dots The [Spin.js docs](http://fgnass.github.io/spin.js/) Cheers