Fork-Awesome/assets/js/site.js

15 lines
438 B
JavaScript
Raw Normal View History

2013-05-11 00:00:01 +08:00
$(function() {
// start the icon carousel
2013-10-23 23:12:39 +08:00
$('#icon-carousel').carousel({
2013-05-11 00:00:01 +08:00
interval: 5000
});
var quotes = new Array(
"Get your company logo added to Font Awesome!",
"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);
2013-05-11 00:00:01 +08:00
});