Created
July 30, 2014 08:21
-
-
Save ezos86/1d66f99f5e705a22c315 to your computer and use it in GitHub Desktop.
A Pen by ezos86.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="quotes"> | |
<p>Here this is the best thing.</p> | |
</div> | |
<div class="quotes"> | |
<p>Quote 2 will fading in here.</p> | |
</div> | |
<div class="quotes"> | |
<p>Quote 3 doing it's thing.</p> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function() { | |
var quotes = $(".quotes"); | |
var quoteIndex = -1; | |
function showNextQuote() { | |
++quoteIndex; | |
quotes.eq(quoteIndex % quotes.length) | |
.fadeIn(2000) | |
.delay(5000) | |
.fadeOut(2000, showNextQuote); | |
} | |
showNextQuote(); | |
})(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.quotes{ | |
display:none; | |
font-family:Helvetica; | |
font-size:20px; | |
text-align:center; | |
margin:30%; | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment