site.js 679 B

1234567891011121314151617
  1. $(function() {
  2. // start the icon carousel
  3. $('#icon-carousel').carousel({
  4. interval: 5000
  5. });
  6. var quotes = new Array(
  7. "Donate $1 and help Font Awesome get <strong>MAJOR upgrades!</strong>",
  8. "Donate $1 and help give Font Awesome <strong>SVG support!</strong>",
  9. "Donate $1 and help give Font Awesome <strong>better icon search!</strong>",
  10. "Get your <strong>company logo</strong> added to Font Awesome!",
  11. "Get your <strong>company logo</strong> added to Font Awesome!",
  12. "Need a specific icon added to Font Awesome?"
  13. ),
  14. random_quote = quotes[Math.floor( Math.random() * quotes.length )];
  15. $('.tagline').html(random_quote);
  16. });