html - Edge 40/15 opacity/visibility transition event propagation (flickering) bug? -
in older versions of edge, desired transition effect works correctly. animating div transitioning opacity/visibility css when parent's hover event called.
//less &:hover .inside{ //part matters: visibility: visible; opacity: 1.0; transition-delay:0s; } .inside{ //part matters: visibility: hidden; opacity: 0; transition: visibility 0s linear 1s,opacity 1s ease; } //pug .wrapper .button text .inside more text
the problem.
in chrome, ie 11, , edge 25 transition consistent , correct. however, transition events seem stacking , making opacity jump , forth if hover on or leave button before transitions complete naturally.
here's example of it: https://codepen.io/vtsells/pen/rzjlyp
bug or missing something? find odd older versions of edge work correctly
your transition-delay:0s
causing problems. setting low value should give result: transition-delay: 0.01s
here's working codepen.
Comments
Post a Comment