mirror of
https://github.com/FortAwesome/Font-Awesome.git
synced 2024-12-28 22:41:28 +08:00
19 lines
715 B
JavaScript
19 lines
715 B
JavaScript
$(function() {
|
|
// start the icon carousel
|
|
$('#icon-carousel').carousel({
|
|
interval: 5000
|
|
});
|
|
|
|
var quotes = new Array(
|
|
"Get your <strong>company logo</strong> added to Font Awesome!",
|
|
"Get your <strong>company logo</strong> added to Font Awesome!",
|
|
"Want SVG support in Font Awesome? Support the Kickstarter!",
|
|
"Major improvements to Font Awesome at 3,000 backers!",
|
|
"Better Font Awesome icon search at 3,000 backers!",
|
|
"Need a specific icon added to Font Awesome?",
|
|
"If you like Font Awesome, you're going to love <strong>Black Tie</strong>!"
|
|
),
|
|
random_quote = quotes[Math.floor( Math.random() * quotes.length )];
|
|
$('.tagline').html(random_quote);
|
|
});
|