@keyframes movingLeftToRight{0%{left:-100%}to{left:100%}}@keyframes movingBottomToTop{to{top:-100%}0%{top:100%}}@keyframes movingTopToBottom{0%{top:-100%}to{top:100%}}@keyframes movingRightToLeft{0%{right:-100%}to{right:100%}}.parentBox{height:300px;width:100%;overflow:hidden}.bottomToTop{position:relative;width:100%;display:inline-block}.leftToRight{animation:movingLeftToRight 15s linear infinite}.leftToRight,.rightToLeft,.topToBottom{position:relative;width:100%;display:inline-block}.bottomToTop{animation:movingBottomToTop 15s linear infinite}.topToBottom{animation:movingTopToBottom 15s linear infinite}.rightToLeft{animation:movingRightToLeft 15s linear infinite}.parentBox:hover .bottomToTop,.parentBox:hover .leftToRight,.parentBox:hover .rightToLeft,.parentBox:hover .topToBottom{animation-play-state:paused}