Skip to content

Instantly share code, notes, and snippets.

@AlekVolsk
Created January 5, 2020 21:35
Show Gist options
  • Save AlekVolsk/2ea599aff1a8efc1143b02799e683c8c to your computer and use it in GitHub Desktop.
Save AlekVolsk/2ea599aff1a8efc1143b02799e683c8c to your computer and use it in GitHub Desktop.
Бегущая строка на CSS
<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