I have a div which shows when you scroll (dmx-show="(browser1.scrollY.offset > 100)") but I want it to fade in and out instead of just appear and disappear. I’ve tried the transitions in the Design panel but I don’t think they work with the Show and Hide Dynamic Attributes.
Show/Hide attributes add css display: none / display: block to the element. The display property can’t be animated.
You should create custom classes which animate your element visibility and apply them on scroll instead of using show/hide for this.
I got it working with a fade in on a div, but I can’t seem to get it working on a fade out. This works for me on fading in though on a flex container… this may help @sitestreet