是否可以使用 jquery 而不是 flash 在页面上制作拉链效果?
例如以下但没有闪光灯(并且垂直坐着): http ://activeden.net/item/interactive-zipper/92456
我能做的最好的就是让我的拉链下降,然后两侧打开水平滑动哈哈,但我不太擅长 jQuery 业务哈哈
任何帮助或建议将不胜感激,
我的尝试,
$("#openbox").click(function() {
$("#openbox").stop().delay(0).animate({
"top": "+=600px"
}, 600);
$curtainopen = false;
$(".leftcurtain").stop().delay(600).animate({
"left": "-=380px"
}, 3000);
$(".rightcurtain").stop().delay(600).animate({
"right": "-=390px"
}, 3000);
$curtainopen = true;
return false;
});
CSS
#openbox {
width:38px;
height:100px;
background-image:url(images/zip.png);
position:absolute;
top:100px;
left:420px;
z-index:6
}
.leftcurtain {
width: 50%;
height: 100%;
top: 0px;
left: 0px;
position:absolute;
background-position:right;
z-index: 5;
background-image:url(images/frontcurtain-left.jpg);
background-repeat:no-repeat;
}
.rightcurtain {
width: 52%;
height: 100%;
right: 0px;
top: 0px;
position: absolute;
z-index: 5;
background-image:url(images/frontcurtain-right.png);
background-repeat:no-repeat;
}
.rightcurtain img, .leftcurtain img {
width: 100%;
height: 100%;
}