我今天刚刚听说过 GSAP 并且玩了6个小时(顺便说一句真棒!)我把所有的工作都搞定了,除非我要翻卡,它的背面没有出现,我在网上寻找一个有同样问题的帖子,但却没有运气。
通过检查元素,我认为问题是当#testCard
旋转时,子div(#front
和#back
)不会旋转,浏览器认为它是正在展示#front
的脸,但我不知道如何解决它!
看看This DEMO,点击框并查看问题!
这是我用它的代码:
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;
}
});
}
});
答案 0 :(得分:2)
由于没有人在几个小时后回答问题,我发现问题是由于我给#testCard
的CSS属性,overflow:hidden;
,我删除了它,并且它有效根据需要!
<强> DEMO 强>