Created
January 5, 2020 21:35
-
-
Save AlekVolsk/2ea599aff1a8efc1143b02799e683c8c to your computer and use it in GitHub Desktop.
Бегущая строка на CSS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="resultStats"> | |
<div class="resultMarquee">Прокручиваемый контент</div> | |
<div class="resultMarquee">Прокручиваемый контент</div> /* повторять много раз, если не умещается */ | |
</div> | |
<style> | |
.resultStats { | |
position: relative; | |
white-space: nowrap; | |
overflow: hidden; | |
width: 100px; | |
height: 40px; | |
} | |
.resultMarquee { | |
position: absolute; | |
min-width: 100px; | |
line-height: 40px; | |
padding: 0 1ex; | |
animation: scroll 7s linear 0s infinite; | |
} | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment