私はCSSマーキーを持っていて、うまく動作しますが、100%滑らかではありません。 以下のコードをよりスムーズに編集することはできますか?スムースCSSマーキー
私は別のアニメーションを試しました:マーキーX線形無限の速度、しかし運がありません。それがためにアニメーションでsetted長い時間である
<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