Flickering On Initial Roll
Closed this issue · 2 comments
brand-services commented
Solid plugin...
On initial hover, I am noticing the js-image-zoom__zoomed-image is switching from display:block to display:none, causing a flickering.
This does not happen after rolling off and back on. Any thoughts?
Also the img param, was under the assumption this was to be the zoom image to be loaded on init, given many users may not hover ever.
theRealPadster commented
I am having this issue as well. What was your solution @brand-services ?
theRealPadster commented
Fixed it on my end. For anyone seeing this in the future:
It looks like adding zoomLensStyle: 'z-index: 1;'
fixes it.
Or with css:
.js-image-zoom__zoomed-area {
z-index: 1;
}