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
Since the slides are using opacity for showing/hiding the last slide will always be placed on top of the others. Before, I used z-index to solve this but that resulted in a buggy transition between slides since the z-index had to change the order.
I've commited a quick fix where I'm using pointer-events to prevent actions from other slides to be triggered but this solution does not work in IE9 and IE10.
I need to find another way of how to take care fo this issue.
The text was updated successfully, but these errors were encountered:
Since the slides are using
opacity
for showing/hiding the last slide will always be placed on top of the others. Before, I usedz-index
to solve this but that resulted in a buggy transition between slides since the z-index had to change the order.I've commited a quick fix where I'm using
pointer-events
to prevent actions from other slides to be triggered but this solution does not work in IE9 and IE10.I need to find another way of how to take care fo this issue.
The text was updated successfully, but these errors were encountered: