Closed ccqgithub closed 8 years ago
it seems to that: if the translateZ less than 0px
the element can not selected on my firefox
i resolve this issue by set depth
to a negative:
coverflow: {
rotate: 50,
stretch: 0,
depth: -100,
modifier: 1,
slideShadows: true
},
but look not perfect, can has a callback when set translate
for slides just like onSetTranslate(swiper, translate)
?
Yeah, that is how different browsers treat 3d perspective. And this is how FF does, i don't see workaround here, it is more FF bug
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
the problem is: when then parent element has
preserve-3d
, the children element can not click and select(on my mac firefox).i find the solution: set
translateZ(10px)
to the children element can resolve the problem, but if i do this ,it will overrite the style that has added by swiper……