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

Posted 双桨lovening

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery 实现从上到下滑动的帘幕效果相关的知识,希望对你有一定的参考价值。

html 部分:

<div class="img-container">
<div class="hander1">
<img src="img/inner.png" / class="hander">
<img src="img/outer.png" class="img-outer" />
</div>
<div class="hander1" style="float:right;">
<img src="img/inner.png" / class="hander">
<img src="img/outer.png" 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",
})
}
})












































以上是关于jquery 实现从上到下滑动的帘幕效果的主要内容,如果未能解决你的问题,请参考以下文章

虚拟仿真实现Slider控制模型的从上到下消失

如何让容器从上到下向下滚动

从上到下 Swift 呈现 ViewController

css动画从上到下弹出下载按钮

Xcode 自定义转场 - Cover Vertical 的对面(从上到下) - 完整新手

使活动从上到下动画