Author Topic: Marquee Scrolling Payouts  (Read 624 times)

Wick

  • Newbie
  • *
  • Posts: 36
    • View Profile
Marquee Scrolling Payouts
« on: June 13, 2017, 02:06:27 PM »
I tried adding a <marquee> to my prizes pool and it works sort of. The prize pool payouts scroll but, there is also a static list at the bottom of the token and it scrolls out of the static list. Here is the html contents. Any idea why is it doing this?

<marquee  direction="up"   scrollamount="1" scrolldelay="50" height="200px">
<prizes>
</marquee>

Corey Cooper

  • Administrator
  • Hero Member
  • *****
  • Posts: 6216
    • View Profile
Re: Marquee Scrolling Payouts
« Reply #1 on: June 16, 2017, 09:16:59 AM »
So I'm not exactly sure what you are seeing/describing, but when I pasted this into my own prizes cell I did see this weird rendering glitch where the bottom of the marquee kind of "smeared" and didn't update properly until the rest of the layout updated (every one second).  I moved the cell and then removed the "height" attribute, but it didn't change.  So I wrapped it in a div to control the height instead and the glitch was resolved:

<div style="height: 200px"><marquee  direction="up"  scrollamount="1" scrolldelay="50">
<prizes>
</marquee>
</div>


I don't know if this will help but give it a try I suppose.