Page 1 of 1
A marquee question
Posted: Sat Jul 06, 2019 5:19 pm
by va3ts
I have a 2 test marquee's on this page.
https://gbarc.ca/testpage.php They both have the same data but the lower marquee is shortened a bit to accommodate a 320 pixel breakpoint, works except it doesn't display all the text as is contained on the first marquee. Also some of the HELP items like delay and repeat are not found on the actual object properties. I'm sure its a work in progress, so this is just FYI..thanks Tom
Re: A marquee question
Posted: Sat Jul 06, 2019 5:23 pm
by Pablo
The test of the second marquee is wrapped to the next line because the object is too small.
delay and repeat are not found on the actual object properties
delay = duration
repeat = loop
Re: A marquee question
Posted: Sat Jul 06, 2019 9:45 pm
by va3ts
That's a little different from the last version, so in order to place this in 320px breakpoint, I have to reduce the text? Or make the object larger ...I added a third on the test page
best regards
Re: A marquee question
Posted: Sun Jul 07, 2019 6:41 am
by Pablo
The old marquee was an unofficial HTML feature, it has now been replaced with standard HTML/CSS.
Which specific functionality of the old marquee are you looking for?
Re: A marquee question
Posted: Sun Jul 07, 2019 1:25 pm
by va3ts
To have a longer sentence, scrolling through a shorter object, so for instance be able to place the marquee on a smaller breakpoint. Using example 2 on the testpage. I tried the news feed ticker but if it scrolls to the left I couldn't get it to do it.
https://gbarc.ca/testpage.php
Re: A marquee question
Posted: Sun Jul 07, 2019 1:43 pm
by Pablo
You can achieve this by adding this code between the head tags of the page
<style>
#Marquee1
{
white-space: nowrap;
}
</style>
Re: A marquee question
Posted: Mon Jul 08, 2019 12:29 am
by va3ts
Thanks