**NOTE: now the Meteor supports NPM natively, there is no good reason to use this package anymore. Just use the original NPM package. **
A Meteor package wrapper for Spin.js via Npm.depends()
.
meteor add sacha:spin
Simply add the spinner to your app as you would with any other template:
Additionally, you can configure the spinner by setting the Meteor.Spinner.options
object.
Meteor.Spinner.options = {
lines: 13, // The number of lines to draw
length: 10, // The length of each line
width: 5, // The line thickness
radius: 15, // The radius of the inner circle
corners: 0.7, // Corner roundness (0..1)
rotate: 0, // The rotation offset
direction: 1, // 1: clockwise, -1: counterclockwise
color: '#fff', // #rgb or #rrggbb
speed: 1, // Rounds per second
trail: 60, // Afterglow percentage
shadow: true, // Whether to render a shadow
hwaccel: false, // Whether to use hardware acceleration
className: 'spinner', // The CSS class to assign to the spinner
zIndex: 2e9, // The z-index (defaults to 2000000000)
top: 'auto', // Top position relative to parent in px
left: 'auto' // Left position relative to parent in px
};