0
我試圖讓不同的引號淡入和淡出正文副本,但也使它們保持在同一行。目前報價只會出現一條單獨的線,而不是與之前的線相同。Javascript - 複製淡入淡出
(function() {
var quotes = $(".quotes");
var quoteIndex = -1;
function showNextQuote() {
++quoteIndex;
quotes.eq(quoteIndex % quotes.length)
.fadeIn(2000)
.delay(2000)
.fadeOut(2000, showNextQuote);
}
showNextQuote();
})();
.quotes {
display: none;
overflow: hidden;
white-space: nowrap;
}
.intro {
width: 800px;
overflow: hidden;
white-space: nowrap;
}
.h2 {
overflow: hidden;
display: inline;
}
.intro h1,
.intro h2 {
overflow: hidden;
vertical-align: top;
font-size: 24px;
}
.intro h1 {
font-weight: bold;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="intro">
<h1>Hello, my name is I am a</h1>
<h2 class="quotes">quote 1</h2>
<h2 class="quotes">quote 2</h2>
<h2 class="quotes">quote 3</h2>
<h1>currently based in London, GBR</h1>
</div>
http://jsfiddle.net/n4mKw/4220/
它不是「JAVA」,它是Javascript。 – 2016-09-26 11:44:55
是否這樣? http://jsfiddle.net/n4mKw/4221/ – Turnip