thirdParty.js 801 B

1234567891011121314151617181920
  1. // set spinner options
  2. Meteor.Spinner.options = {
  3. lines: 12, // The number of lines to draw
  4. length: 0, // The length of each line
  5. width: 4, // The line thickness
  6. radius: 8, // The radius of the inner circle
  7. corners: 1, // Corner roundness (0..1)
  8. rotate: 0, // The rotation offset
  9. direction: 1, // 1: clockwise, -1: counterclockwise
  10. color: '#000', // #rgb or #rrggbb or array of colors
  11. speed: 1.7, // Rounds per second
  12. trail: 49, // Afterglow percentage
  13. shadow: false, // Whether to render a shadow
  14. hwaccel: false, // Whether to use hardware acceleration
  15. className: 'spinner', // The CSS class to assign to the spinner
  16. zIndex: 2e9, // The z-index (defaults to 2000000000)
  17. top: '50%', // Top position relative to parent
  18. left: '50%' // Left position relative to parent
  19. };