Hi,
I'm building an web intra-net application which has the need for a flashing/blinking button (this has been discussed in depth and is our design decision so please do not lecture me about it). Our UI framework is GWT
.
Currently in the prototype this effect is achieved be scheduling a timer which adds or removes a css style thus creating the effect. (The timer can be as fast as having 200ms scheduled repeating).
This design contains a few problems for me:
1. Leans very heavily on a specific css heirarchy and thus is problematic to reproduce this behaviour in different widgets of the application.
2. I think it will not scale nicely when I have 10 buttons which all run these timers on the same page.
3. Very uncomfortable to debug.
I've spent quite a few hours trying to investigate GWT
libraries offring this ability but I have not really found one that I am satisfied with.
Basically what I'm looking for is advice regarding specific GWT
libraries or maybe ideas how this effect can be implemented more wisely.
Thanks in advance