Displaying 1 result from an estimated 1 matches for "test_div2".
Did you mean:
test_div
2006 Jan 16
4
how di i stop a running effect?
...like fade in and out an element on hovering an element(->
tooltip behavior), but when i''m using Effect.Appear/Effect.Fade both
effects will continue to play and overlap each other, resulting in
unpredictable behavior.
<code>
<button onmouseover="Effect.Appear(''test_div2'')"
onmouseout="Effect.Fade(''test_div'')">TRIGGER</button>
<div id="test_div" style="width: 100px; height: 100px; background-color:
#FF33CC;">TEST</div>
</code>
So i need some advice how to stop a running eff...