Of course.
Chrome , Sometimes problem Sometimes fine.
You may understand it if you display SHOP PAGE in IE11.
Second images Appear for an instant ”when loading page”…
So second images hidden at first.
I add this custom css. It have fixed ie11,Chrome.
Should I add -webkit-,-moz-,-ms- ?
Please tell me correct description
ul.products li.product figure.product-transition-fade > a > .product-image.second-image {
position: absolute;
top: 0;
left: 0;
width: 100%;
visibility:hidden;
opacity:0;
transition:visibility 0s linear 0.5s,opacity 0.5s linear;
}
ul.products li.product figure.product-transition-fade:hover > a > .product-image.second-image {
visibility:visible;
opacity:1;
transition-delay:0s;
}