我已經使用CSS構建了一個新聞收報機,但是這個轉換看起來一點也不平穩。我不知道如何消除程序中循環之間的間隙。有人能幫我把循環做的天衣無縫嗎?
代碼如下:
.hwrap {
overflow: hidden;
background: #eee;
}
.hmove {
display: flex;
}
.hitem {
flex-shrink: 0;
width: 500px;
box-sizing: border-box;
padding: 10px;
text-align: center;
}
@keyframes tickerh {
0% {
transform: translate3d(100%, 0, 0);
}
100% {
transform: translate3d(-100%, 0, 0);
}
}
.hmove {
animation: tickerh linear 5s infinite;
}
.hmove:hover {
animation-play-state: paused;
}
<div class="hwrap">
<div class="hmove">
<div class="hitem">
<p>"Imagination is more important than knowledge. For knowledge is limited, whereas imagination embraces the entire world, stimulating progress, giving birth to evolution."</p>
<p>-Albert Einstein</p>
</div>
<div class="hitem">
<p> "You may encounter many defeats, but you must not be defeated. In fact, it may be necessary to encounter the defeats so you can know who you are, what you can rise from, how you can still come out of it."</p>
<p>-Maya Angelou</p>
</div>
<div class="hitem">
<p>"Education is the most powerful weapon which you can use to change the world. It has the power to transform individuals, communities, and nations, creating a brighter and more equitable future for all."</p>
<p>-Nelson Mandela</p>
</div>
<div class="hitem">
<p> "The biggest adventure you can take is to live the life of your dreams. Don't be afraid to take risks, embrace your passions, and pursue what truly sets your soul on fire."</p>
<p>-Oprah Winfrey</p>
</div>
<div class="hitem">
<p>"Be the change that you wish to see in the world. Small acts of kindness and compassion can ripple through society, inspiring others to join the movement towards a more peaceful and just world."</p>
<p>-Mahatma Gandhi</p>
</div>
<div class="hitem">
<p> "Darkness cannot drive out darkness; only light can do that. Hate cannot drive out hate; only love can do that. Let us choose love over hate and strive for a world where justice and equality prevail."</p>
<p>-Martin Luther King Jr.</p>
</div>
</div>
</div>