マーキーホバーストップ:CSSを使用したテキストのアニメーション制御方法
CSSアニメーションを使用する方法:<style> .marquee { animation: marquee 10s linear infinite; } .marquee:hover { animation-play-state: paused; } @keyframes marquee { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } } </style> <div class="marquee">ここにスクロールさせたいテキストを入力<>>More