2
https://jsfiddle.net/zdoe56yr/1/Firefox和Safari不尊重後「視角」的變化
鑑於上述在Chrome/Internet Explorer和紅色方框的z-index將永遠是在上面,不管如何箱歪斜。
但是,在Firefox和Safari中查看它,當傾斜角度足夠大時,藍色框會流血。
它是由perspective
造成的。是否有任何黑客可以讓Firefox和Safari尊重z-index?
示例代碼:
$(".background").on("mousemove", function(e) {
var ax = -($(window).innerWidth()/2 - e.pageX)/5;
var ay = ($(window).innerHeight()/2 - e.pageY)/5;
TweenMax.set(".red, .blue", {
rotationX: ay,
rotationY: ax
});
});