jquery弹出层类代码分享 - Web前端
作者:98wpeu发布时间:2026-06-03分类:网页前端技术浏览:45
导读:复制代码代码如下:vart9=newPopupLayer({trigger:"#ele9",popupBlk:"#blk9",closeBTn:"#close9",uSE...
复制代码 代码如下:
var t9 = new PopupLayer({trigger:"#ele9",popupBlk:"#blk9",closeBTn:"#close9",
uSEOverlay:true,useFx:true,offsets:{x:0,y:-41}});
t9.doEffects = function(way){
if(way == "open"){
this.popupLayer.CSS({opacity:0.3}).show(400,function(){
this.popupLayer.Animate({
left:($(document).width() - this.popupLayer.width())/2,
top:(document.documentElement.clientheight -
this.popupLayer.height())/2 + $(document).scrollTop(),
opacity:0.8
},1000,function(){this.popupLayer.css("opacity",1)}.binding(this));
}.binding(this));
}
else{
this.popupLayer.animate({
left:this.trigger.offset().left,
top:this.trigger.offset().top,
opacity:0.1
},{duration:500,complete:function(){
this.popupLayer.css("opacity",1);this.popupLayer.hide()}.binding(this)});
}
}
var t9 = new PopupLayer({trigger:"#ele9",popupBlk:"#blk9",closeBTn:"#close9",
uSEOverlay:true,useFx:true,offsets:{x:0,y:-41}});
t9.doEffects = function(way){
if(way == "open"){
this.popupLayer.CSS({opacity:0.3}).show(400,function(){
this.popupLayer.Animate({
left:($(document).width() - this.popupLayer.width())/2,
top:(document.documentElement.clientheight -
this.popupLayer.height())/2 + $(document).scrollTop(),
opacity:0.8
},1000,function(){this.popupLayer.css("opacity",1)}.binding(this));
}.binding(this));
}
else{
this.popupLayer.animate({
left:this.trigger.offset().left,
top:this.trigger.offset().top,
opacity:0.1
},{duration:500,complete:function(){
this.popupLayer.css("opacity",1);this.popupLayer.hide()}.binding(this)});
}
}
相关推荐
- 使用jQuery动态加载js脚本文件的方法 - Web前端
- jquery控制display属性为none或block - Web前端
- jquery检测input checked 控件是否被选中的方法 - Web前端
- JQuery EasyUI 日期控件如何控制日期选择区间 - Web前端
- jquery禁用右键示例 - Web前端
- Jquery 在页面加载后执行的几种方式 - Web前端
- jquery解析XML字符串和XML文件的方法说明 - Web前端
- 简单选项卡 js和jquery制作方法分享 - Web前端
- 开发中可能会用到的jQuery小技巧 - Web前端
- 利用jquery写的左右轮播图特效 - Web前端
- 网页前端技术排行
-
- 1【第六章】Foundation之按钮和下拉功能 - Web前端
- 2jQuery编写widget的一些技巧分享 - Web前端
- 3基于jquery的滚动条滚动固定div(附演示下载) - Web前端
- 4在Mac/PC上远程调试iPhone/iPad上的网页 - Web前端
- 5jQuery实例教程:制作网页中可折叠的面板 - Web前端
- 6分析Iconfont-阿里巴巴矢量常用图标库 - Web前端
- 7JS网页制作实例:标签云 - Web前端
- 8[Web前端]用javascript实现默认图片替代未显示的图片 - Web前端
- 9分享精心挑选的12款优秀jQuery Ajax分页插件和教程 - Web前端
- 最近发表
-
- WordPress随机显示特色图片插件:Random Post Thumbnails
- KeePass实现Chrome浏览器自动填充密码方法一
- LNMP一键包nginx 301强制跳转到https教程
- KeePass实现Chrome浏览器自动填充密码方法二
- #建站# 免费的VPS管理软件Xshell8/Xftp8中文版下载
- 使用Xshell 8连接VPS教程_电脑登录vps的方法
- WordPress评论界面添加烟花????效果
- 不同浏览器书签同步方案:坚果云+Floccus_详细使用教程
- iOS端KeePassXC客户端APP:Strongbox Password Safe
- 给WordPress评论中的Gravatar头像图片添加ALT属性


