site.js 715 B

123456789101112131415161718
  1. $(function() {
  2. // start the icon carousel
  3. $('#icon-carousel').carousel({
  4. interval: 5000
  5. });
  6. var quotes = new Array(
  7. "Get your <strong>company logo</strong> added to Font Awesome!",
  8. "Get your <strong>company logo</strong> added to Font Awesome!",
  9. "Want SVG support in Font Awesome? Support the Kickstarter!",
  10. "Major improvements to Font Awesome at 3,000 backers!",
  11. "Better Font Awesome icon search at 3,000 backers!",
  12. "Need a specific icon added to Font Awesome?",
  13. "If you like Font Awesome, you're going to love <strong>Black Tie</strong>!"
  14. ),
  15. random_quote = quotes[Math.floor( Math.random() * quotes.length )];
  16. $('.tagline').html(random_quote);
  17. });