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",
})
}
})

原文地址:https://www.cnblogs.com/shuangjiang/p/8464739.html

时间: 2024-11-07 15:11:44

jquery 实现从上到下滑动的帘幕效果的相关文章

Jquery实现手机上下滑屏滑动的特效代码

要引入两个jquery插件 可以去网上下载 <script src="jquery-1.11.1.min.js"></script><script src="js/jquery.touchSwipe.min.js"></script> 代码如下: <!DOCTYPE html > <html ><head><meta charset="UTF-8">&

最近写的一个鼠标从上到下滑动,,高大上~

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML> <HEAD> <TITLE> New Document </TITLE> <META name="Generator" content="EditPlus

jQuery手机端上拉刷新下拉加载更多页面

<!doctype html> <html> <head> <title>jquery 手机端上拉刷新下拉加载更多页面</title> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8"> <meta name="viewpost" content="width=device-wi

JQ 移动端返回顶部,往下滑动时显示返回按钮,往上滑动时隐藏返回按钮

returnTop:function(){ //预定义返回顶部的html代码,它的css样式默认为不显示 var gotoTop_html = '<div class="returnTop"></div>'; //将返回顶部的html代码插入页面上id为page的元素的末尾 $(".ding_C_returnTop").append(gotoTop_html); var windowTop=0;//初始话可视区域距离页面顶端的距离 $(doc

使用触摸检测滑动(左,右,上或下)

触摸式滑动是指在特定方向上快速移动手指穿过触摸表面的行为.onswipeJavaScript中目前没有" "事件,这意味着我们可以使用可用的触摸事件来实现一个事件,并且只需在刷卡时定义,即"刷卡". 让我们首先定义何时应该将触摸表面上的移动视为滑动.有在玩两个变量这里-在距离旅行了用户对x或y轴的手指touchstart来 touchend,而且,它花时间.基于这两个因素,我们可以决定该操作是否符合滑动和方向. 有了这个,让我们把想法付诸行动,看看如何检测右键(从左

appium实现app上、下、左、右滑动操作

1. swipe方法语法 swipe(self, start_x, start_y, end_x, end_y, duration=None): 参数 - start_x - 开始滑动的x坐标 - start_y - 开始滑动的y坐标 - end_x - 结束点x坐标 - end_y - 结束点y坐标 - duration - 持续时间,单位毫秒 2. 手机坐标: 手机从左上角开始为0,横着的是x轴,竖着的是y轴 3. 获取屏幕的size size = driver.get_window_siz

jQuery之批量上传文件插件之一

$("#uploader").plupload({     /*常规设置*/     runtimes:'html5,flash,silverlight,html4',     url:'hyzx/seller/commPicUpload.action',     /*最大文件限制b, kb, mb, gb, tb */     max_file_size:'1mb',     /*是否生成唯一文件名,如果为true会为上传的文件唯一的文件名.*/     unique_names:t

iOS7下滑动返回与ScrollView共存二三事

[转载请注明出处] = =不是整篇复制就算注明出处了亲... iOS7下滑动返回与ScrollView共存二三事 [前情回顾] 去年的时候,写了这篇帖子iOS7滑动返回.文中提到,对于多页面结构的应用,可以替换interactivePopGestureRecognizer的delegate以统一管理应用中所有页面滑动返回的开关,比如在UINavigationController的派生类中 1 //我是一个NavigationController的派生类 2 - (id)initWithRootV

jQuery.uploadify文件上传组件实例讲解

1.jquery.uploadify简介 在ASP.NET中上传的控件有很多,比如.NET自带的FileUpload,以及SWFUpload,Uploadify等等,尤其后面两个控件的用户体验比较好,无刷新,带上传进度等等.在最近的短信平台开发中,使用Uploadify进行文件上传. Uploadify官网地址是:http://www.uploadify.com/ 可满足项目开发需求. 下载地址:http://www.uploadify.com/wp-content/uploads/files/