You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I pulled this out of my other issue, because it is unrelated.
Tested on firefox that this works okay. too glitchy on chrome to test well. the mouse dragging animation just snaps into place, and if folding is triggered by JS, then it goes too fast to catch.
in chrome, folded.accordion(100) works smoothly, folded.accordion(0) happens instantly. folded.unfold() halfway works. The first unfold motion glitches, then the remainder are okay. my intuition is that it is diving behind other DOM elements, even though the container has a z-index of 1000.
yeah, this is the case. I can test with folded.ramp(6) versus folded.ramp(-6). In firefox everything is a-okay, in Chrome only folded.ramp(-6) is okay because it goes towards the viewer instead of folded.ramp(6) which dives behind other elements.
The text was updated successfully, but these errors were encountered:
the above css solved my problem, but i bet its not the best way to tackle it. Sorry forgot to mention that i wanted to achieve the chrome behaviour! So the above will fold things behind the original depth of things.
I pulled this out of my other issue, because it is unrelated.
folded.accordion(100)
works smoothly,folded.accordion(0)
happens instantly.folded.unfold()
halfway works. The first unfold motion glitches, then the remainder are okay. my intuition is that it is diving behind other DOM elements, even though the container has a z-index of 1000.folded.ramp(6)
versusfolded.ramp(-6)
. In firefox everything is a-okay, in Chrome onlyfolded.ramp(-6)
is okay because it goes towards the viewer instead offolded.ramp(6)
which dives behind other elements.The text was updated successfully, but these errors were encountered: