When reducing viewport width and crossing a breakpoint value boundary, an autoplay value defined in a breakpoint will not update from autoplay false, to a number value eg. autoplay: 4000;
I tested this with a very high number for autoplay ie 100000 instead of false to see what happens.
In that scenario when decreasing the browser width and crossing into a breakpoint that's using autoplay: 4000 the new autoplay value is not used / updated until the autoplay value from the higher breakpoint is "complete". So in this scenario you'd have to wait 100000 after crossing the boundary before the new value of 4000 starts being used.
I can deduce from this the new breakpoint's autoplay value needs updating on the leading edge immediately when crossing from a higher breakpoint to a lower one, rather than on the trailing edge.
I will add a reduced test case on codepen for this later.
When reducing viewport width and crossing a breakpoint value boundary, an autoplay value defined in a breakpoint will not update from
autoplay false, to a number value eg.autoplay: 4000;I tested this with a very high number for autoplay ie
100000instead offalseto see what happens.In that scenario when decreasing the browser width and crossing into a breakpoint that's using
autoplay: 4000the new autoplay value is not used / updated until the autoplay value from the higher breakpoint is "complete". So in this scenario you'd have to wait100000after crossing the boundary before the new value of4000starts being used.I can deduce from this the new breakpoint's autoplay value needs updating on the leading edge immediately when crossing from a higher breakpoint to a lower one, rather than on the trailing edge.
I will add a reduced test case on codepen for this later.