Add Poll
 
Options: Text Color Split Pie
 
 
 
 
 
 
 
 
Poll Comment:
Max 500 characters. Remaining characters:
days and minutes. Leave it blank if you don't want to set it now.

Please type the characters exactly as they appear in the image,
without the first 2 and last 2 characters.
The characters must be typed in the same order,
and they are case-sensitive.
Open Preview Preview

You can resize the textbox by dragging the right or bottom border.
Off Topic Comment Insert Spoiler
Insert Hyperlink Insert FTP Link Insert Image Insert E-mail Insert Media Insert Table Insert Table Row Insert Table Column Insert Horizontal Rule Insert Teletype Insert Code Insert Quote Edited Superscript Subscript Insert List /me - my name Insert Marquee Insert Timestamp No Parse
Bold Italicized Underline Insert Strikethrough Highlight
                       
Change Text Color
Insert Preformatted Text Left Align Centered Right Align
resize_wb
resize_hb







Max 5000 characters. Remaining characters:
Text size: %
More Smilies
View All Smilies
Collapse additional features Collapse/Expand additional features Smiley Wink Cheesy Grin Angry Sad Shocked Cool Huh Roll Eyes Tongue Embarrassed Lips Sealed Undecided Kiss Cry
Topic Summary - Displaying 5 post(s). Click here to show all
Posted by: Dandello
Posted on: Oct 26th, 2017 at 12:57pm
Some of the tags in the css aren't as well supported as they might be. Win Safari ignores half the instructions - like speed and direction.  Smiley But, then Win Safari is obsolete, too.
Posted by: Derek Bullock
Posted on: Oct 17th, 2017 at 7:13am
Using iPad and working on Safari but not Firefox App. Smiley
Posted by: Dandello
Posted on: Dec 5th, 2015 at 8:20pm
I'm 99% cure it's now working in Safari (well, newer versions of Safari).

In your .css files add
Code (CSS)
Select All
.marquee {
     width: 100%;
     margin: 0 auto;
     white-space: nowrap;
     overflow: hidden;
     box-sizing: border-box;
 }

 .marquee span {
     display: inline-block;
     padding-left: 100%;  /* show the marquee just outside the div */
     -webkit-animation: marquee 15s linear infinite;
     animation: marquee 15s linear infinite;
 }

 .marquee span:hover {
     animation-play-state: paused;
     -webkit-animation-play-state: paused;
 }

 /* Make it move */
 @keyframes marquee {
     0%   { transform: translate(0, 0); }
     100% { transform: translate(-100%, 0); }
 }
 @-webkit-keyframes marquee {
     0%   { -webkit-transform: translate(0, 0); }
     100% { -webkit-transform: translate(-100%, 0); }
 } 



In YaBBC.pm find
Code (Perl)
Select All
    $message =~
       s/( |&nbsp;)*\[move\](.*?)\[\/move\]/<marquee>$2<\/marquee>/isgm; 



replace with:
Code (Perl)
Select All
    $message =~
       s/( |&nbsp;)*\[move\](.*?)\[\/move\]/<div class="marquee"><span>$2<\/span><\/div>/isgm; 



Note - there are some minority browsers out there this has NOT been tested on.
Posted by: Dandello
Posted on: Dec 5th, 2015 at 4:06pm
Or use a browser other than Safari/Opera. Undecided
Posted by: Dandello
Posted on: Dec 5th, 2015 at 3:52pm
Finally found a css solution for the deprecated marquee tag.
Marquee Test


If it doesn't work- reload the css file.  Smiley