jquery 实现从上到下滑动的帘幕效果

html 部分:

<div class="img-container">
<div class="hander1">
<img src="img/inner.png" alt="" / class="hander">
<img src="img/outer.png" alt="" class="img-outer" />
</div>
<div class="hander1" style="float:right;">
<img src="img/inner.png" alt="" / class="hander">
<img src="img/outer.png" alt="" class="img-outer" />
</div>
</div>

css 部分:

.img-container .hander1{
width:318px;
height:231px;
margin-top: 15px;
margin-left: 10px;
overflow: hidden;
position: relative;
float: left;
z-index: 999;

}

.img-container img{
display: inline-block;
position: absolute;

border: 1px solid #ccc;
}

.img-container .img-outer{
display: none;
position: absolute;
top:-216px;

border: 1px solid #ccc;
}

js 部分:

$(".hander1").hover(function(){

$(this).find(".img-outer").css({
"display": "block"
}).animate({
top: "0px"
});
}).on({
mouseleave: function() {
$(this).find(".img-outer").animate({
"top": "-231px",
})
}
})

转载于:https://www.cnblogs.com/shuangjiang/p/8464739.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值