我用css3创建了一个翻转动画。在webkit浏览器上,翻盖看起来很好,但在firefox中,翻转动画无法正常工作。你可以看到翻转动画有效,但它看起来真的很“奇怪”,并且不会一直翻转。
我的HTML:
<li class="employee">
<div class="employee_container">
<div class="front flip">
<img src="http://www.piratealumni.com/s/722/images/editor/headshots/AshleyPerson.jpg" alt="">
</div>
<div class="back flip">
<h2>Title</h2>
<h3>Lorem ipsum</h3>
<p>Lorem ipsum. Lorem ipsum. Lorem ipsum. Lorem ipsum. Lorem ipsum.</p>
</div>
</div>
</li>
我的CSS:
.employee {
width:33%;
float:left;
display:block;
padding:0.5em;
height:20em;
}
.employee_container {
height:100%;
position:relative;
-webkit-perspective: 800px;
-moz-perspective: 800px;
-ms-perspective: 800px;
-o-perspective: 800px;
perspective: 800px;
}
.back, .front {
border: 3px solid #cecece;
position:absolute;
}
.front img {
min-height:100%;
height:auto;
width:100%;
}
.front {
overflow:hidden;
width:100%;
height:100%;
z-index:900;
-webkit-transform: rotateX(0deg) rotateY(0deg);
-webkit-transform-style: preserve-3d;
-webkit-backface-visibility: hidden;
-moz-transform: rotateX(0deg) rotateY(0deg);
-moz-transform-style: preserve-3d;
-moz-backface-visibility: hidden;
-o-transition: all .4s ease-in-out;
-ms-transition: all .4s ease-in-out;
-moz-transition: all .4s ease-in-out;
-webkit-transition: all .4s ease-in-out;
transition: all .4s ease-in-out;
}
.active .front {
-webkit-transform: rotateY(180deg);
-moz-transform: rotateY(180deg);
}
.back {
background-image: url(img/RD.png);
background-repeat: no-repeat;
background-position:90% 93%;
padding:1em;
background-color:#ecad40;
height:100%;
width:100%;
z-index:800;
-webkit-transform: rotateY(-180deg);
-webkit-transform-style: preserve-3d;
-webkit-backface-visibility: hidden;
-moz-transform: rotateY(-180deg);
-moz-transform-style: preserve-3d;
-moz-backface-visibility: hidden;
-o-transition: all .4s ease-in-out;
-ms-transition: all .4s ease-in-out;
-moz-transition: all .4s ease-in-out;
-webkit-transition: all .4s ease-in-out;
transition: all .4s ease-in-out;
}
.active .back {
z-index: 1000;
-webkit-transform: rotateX(0deg) rotateY(0deg);
-moz-transform: rotateX(0deg) rotateY(0deg);
}
.back h3 {
font-weight:normal;
font-size:0.8em;
}
.back p {
font-size:1em;
padding-top:1em;
border-top:1px dashed white;
margin-top:1em;
}
我做了一个小提示来显示错误
提前致谢
更新:我在运行最新版firefox的4台不同计算机(Windows和Mac OS)上进行了测试,并且在所有计算机上都是一样的。
答案 0 :(得分:9)
由于您声明rotateY(-180deg)
,浏览器可以选择在翻转卡时选择的方向(轮换可以从左侧或右侧进行)。
Chrome“意外地”为两个面部采取了正确的方向,firefox采取相反的方式为背面。取rotateY(-179deg)
(或rotateY(181deg)
)将迫使Firefox使用相同的方向。
然而,更好的方法是将面部保持原样,而不是为父母制作动画!此外,您不需要javascript(这会引入更少的代码:pure css example)!
当我开始进入3D变换时,This article about 3d transforms帮了我很多。这绝对值得一读。
答案 1 :(得分:1)
是否翻滚下边缘?
如果是这样,它正在运行 mouseenter 事件,那么 mouseleave 事件就会直接运行,因此它永远不会完全动画化。
将日志添加到Javascript以获取问题中的代码
$('.employee_container').hover(
function(){
$(this).addClass('active');
console.log('over');
},
function(){
$(this).removeClass('active');
console.log('off');
}
);
您可能需要添加一些内容才能运行 mouseleave 事件,直到动画完成。
这样的事情看小提琴http://jsfiddle.net/vDQwQ/10/
var animating = false;
var callback = function(){
animating = false
};
$('.employee_container').hover(
function(){
if(animating) return;
animating = true;
$(this).addClass('active');
//set small delay
setTimeout(callback, 100);
},
function(){
if(animating) return;
animating = true;
$(this).removeClass('active');
//set small delay
setTimeout(callback, 100);
}
);
如果你快速翻滚,可能会感到困惑。
防止这样的事情的最好方法是让它在点击而不是悬停上工作。
希望这有帮助