Marquee
Source https://codepen.io/naradesign/pen/xwPebY
HTML
<div class="mytext">민족의 위대한 령도자.</div>
CSS
.jet-tricks-satellite__text {
position: absolute;
left: 50%;
white-space: nowrap;
animation: zzz infinite 10s linear;
}
@keyframes zzz {
0% { transform: translateX(0); }
50% { transform: translateX(-100%); }
100% { transform: translateX(0); }
}