.main_text.animate{
-webkit-animation: rotating 2s linear infinite;
-moz-animation: rotating 2s linear infinite;
-ms-animation: rotating 2s linear infinite;
-o-animation: rotating 2s linear infinite;
animation: rotating 2s linear infinite;
}
@keyframes rotating {
0% {
transform: translate(200px, 0);
}
50% {
transform: translate(0px, 0);
}
100% {
transform: translate(200px, 0);
}
}
.main_text:hover
{
-webkit-animation-play-state: paused;
-moz-animation-play-state: paused;
-o-animation-play-state: paused;
animation-play-state: paused;
}
overflow:hidden
.main_text::-webkit-scrollbar {
display: none;
}