Scrolling Text Banner CSS
-
Hi there,
I have designed a rolling text banner which currently states:
Company name | Company name | Company name | Company name Company name |
I have used this CSS code:
.slidebanner {
animation: slideleft 7s infinite linear;
}@keyframes slideleft {
0% {transform:translate(-100%)}
100% {transform:translate(100%)}
}The issue I am having is once the text has passed across the screen, there is a blank space before the text scrolls again. If I add more text, the text breaks on to a new line so I end up with two lines of text scrolling across the screen.
Ideally I need one continuous stream of “Company name” without line breaks and without a pause.
Could someone offer any guidance on how I can get this to function?
The topic ‘Scrolling Text Banner CSS’ is closed to new replies.