我今天刚刚听说了GSAP,并用它玩了大约6个小时(顺便说一句,这太棒了!)我把所有的东西都用上了,除了当我想翻转一张牌时,它的背面没有出现,我在网上到处寻找有同样问题的帖子,但没有成功。
通过检查元素,我认为问题是当#testCard
被旋转时,子div(#front
和#back
)不会被旋转,浏览器认为是#front
的脸在显示,但我不知道如何解决它!
看看这个演示,点击框并查看问题!
这是我使用的代码:
HTML:
<div id="flipContainer">
<div id="testCard">
<div id="front">Front</div>
<div id="back">Back</div>
</div>
</div>
CSS:
#flipContainer{
width:200px;
height:100px;
background-color:#EEE;
position:absolute;
top:100%;
left:50px;
margin-top:-150px;
z-index:99999999999999999999999999999;}
#testCard{
width:100%;
height:100%;
position:absolute;
cursor:pointer;
overflow:hidden;}
#testCard div {
display: block;
position: absolute;
width: 100%;
height: 100%;}
#front{
background-color:#F00;}
#back{
background-color:#00F;}
jQuery:(JS)
TweenMax.set('#flipContainer, #testCard',{
perspective:1000
});
TweenMax.set($('#testCard'),{
boxShadow:'0 0 10px #000',
borderRadius:'10px',
transformStyle:'preserve-3d',
transformOrigin:'center center 50'
});
TweenMax.set('#testCard div',{
backfaceVisibility:'hidden'
});
TweenMax.set('#back',{
rotationY:-180
});
TweenMax.set($('#flipContainer'),{
borderRadius:'10px'
});
var flipped=false;
$('#testCard').click(function(){
if(!flipped){
TweenMax.to($(this),1,{
rotationY:180,
onComplete:function(){
flipped=true;
}
});
}
else{
TweenMax.to($(this),1,{
rotationY:0,
onComplete:function(){
flipped=false;
}
});
}
});
经过几个小时的讨论,没有人回答这个问题,我发现这个问题是因为我给了#testCard
、overflow:hidden;
一个CSS属性,我删除了它,它按要求工作!
DEMO