我有一個CSS選框,它運行良好,但不是100%平滑。 我可以編輯下面的代碼來運行更流暢嗎?Smooth css marquee
我已經嘗試過不同的動畫:選框Xs線性無限速度,但沒有運氣。
<style>
/* Make it a marquee */
.marquee {
width: 100%;
margin: 0 auto;
white-space: nowrap;
overflow: hidden;
background-color: #000000;
bottom: 0px;
}
.marquee span {
display: inline-block;
padding-left: 100%;
text-indent: 0;
animation: marquee 15s linear infinite;
background-color: #000000;
color: white;
bottom: 0px;
}
/* Make it move */
@keyframes marquee {
0% { transform: translate(0, 0); }
100% { transform: translate(-100%, 0); }
}
/* Make it pretty */
.scroll {
padding-left: 1.5em;
position: fixed;
font: 50px 'Verdana';
bottom: 0px;
left: 0px;
height: 10%;
}
</style>
HTML
<p class="scroll marquee"><span id="scrolltext"></span></p>
什麼是您的html?請包括一個例子。 –
也許
@CalvT。 HTML添加 – Wienievra