基于layer简单的弹层封装
/**
* 产生长度为32的Guid字符串
*/
function getGuid32() {
var rt_str = String.fromCharCode(65 + Math.floor(Math.random() * 26));
for (i = 0; i < 31; ++i) {
var num = Math.floor(Math.random() * (26 + 26 + 10));
var ch_str;
if (num < 10) {
ch_str = num.toString();
}
else if (num < 10 + 26) {
ch_str = String.fromCharCode(65 + num - 10);
}
else {
ch_str = String.fromCharCode(97 + num - 10 - 26);
}
rt_str += ch_str;
}
return rt_str;
} /**
* 根据guid删除alert-div元素
* @param Id guid
*/
function delAlertDivById(Id) {
//等待layer自动处理好
setTimeout(function () {
var $alert_div = $(".alert-div[data-guid='" + Id + "']");
if ($alert_div.length == 0) {
clearInterval(id);
}
else {
$alert_div.remove();
}
}, 1200);
//上面这个延时数值很重要,因为layer没提供close的回调,所以只能如此等待
} /**
* 关闭弹层相关的清理工作
* @param that myAlert对象
*/
function closeWork(that) {
clearTimeout(that.autoCloseTimerId);
layer.close(that.winId);
delAlertDivById(that.uniqueId);
} /**
* 根据myAlert对象组件出jQuery弹窗对象
* @param that myAlert对象
*/
function buildPopup(that) {
var baseHtmlStr = "\
<div class='alert-div'>\
<div class='title'>\
<i class='fa icon'></i>\
<span class='text'></span>\
<i class='fa fa-close icon-close'></i>\
</div>\
<div class='content text-center'>\
<i class='fa fa-5x icon'></i>\
<span class='text1'></span>\
<span class='text2'></span>\
</div>\
<div class='control text-center'>\
<div class='btn btn-base'></div>\
</div>\
</div>\
";
var $baseJq = $(baseHtmlStr); $baseJq.attr("data-guid", that.uniqueId); $baseJq.children(".title").children(".icon").addClass(that.titleIcon);
$baseJq.children(".content").children(".icon").addClass(that.contentIcon);
$baseJq.children(".title").children(".text").text(that.title);
$baseJq.children(".content").children(".text1").text(that.text);
$baseJq.children(".content").children(".text2").text(that.summary);
$baseJq.children(".control").children(".btn-base").text(that.okBtnText); $baseJq.children(".title").children(".icon-close").click(that.canClose ? that.closeBtnFunction : function () { });
$baseJq.children(".control").children(".btn-base").click(that.okBtnFunction); return $baseJq;
} /**
* 根据配置对象对于myAlert对象进行配置
* @param dstObj 目标对象,myAlert对象
* @param cfgObj 配置对象
*/
function defaultConfig(dstObj, cfgObj) {
if (cfgObj == undefined) {
cfgObj = new Object();
} dstObj.uniqueId = cfgObj.uniqueId || getGuid32(); dstObj.title = cfgObj.title || "提示";
dstObj.text = cfgObj.text || "确认?";
dstObj.summary = cfgObj.summary || "确认请按下方按钮";
dstObj.okBtnText = cfgObj.okBtnText || "确认"; dstObj.titleIcon = cfgObj.titleIcon || "fa-info-circle";
dstObj.contentIcon = cfgObj.contentIcon || "fa-exclamation-circle"; if (cfgObj.canClose == undefined) {
dstObj.canClose = true;
}
else {
dstObj.canClose = cfgObj.canClose;
}
dstObj.autoCloseTimer = cfgObj.autoCloseTimer || -1; dstObj.okBtnFunction = cfgObj.okBtnFunction || function () {
closeWork(dstObj);
};
dstObj.closeBtnFunction = cfgObj.closeBtnFunction || function () {
closeWork(dstObj);
};
dstObj.autoCloseTimerId = -1;
dstObj.autoCloseFunction = cfgObj.autoCloseFunction || function () {
closeWork(dstObj);
}; //存储layer返回的弹层id
dstObj.winId = -1;
} /**
* myAlert对象构造函数
* @param cfgObj myAlert配置对象
*/
function myAlert(cfgObj) { defaultConfig(this, cfgObj); //弹出弹层方法
this.show = function () {
if ($(".alert-div[data-guid='" + this.uniqueId + "']").length > 0) {
return;
} var $baseJq = buildPopup(this); $("body").append($baseJq); /**
* 实际弹窗部分
*/
var $popup_dom = $baseJq;
this.winId = layer.open({
id: this.uniqueId,
type: 1,
closeBtn: 0,
title: false,
content: $popup_dom,
area: [$popup_dom.width(), $popup_dom.height()]
}); if (this.canClose) {
if (this.autoCloseTimer > -1) {
var that = this;
this.autoCloseTimerId = setTimeout(function () {
that.autoCloseFunction();
}, this.autoCloseTimer);
}
}
};
}
.layui-layer {
background-color: rgba(255, 255, 255, 0) !important;
} .alert-div {
position: relative;
width: 740px;
height: 480px;
border: 1px solid #f2af6f;
border-radius: 6px;
font-family: 'Microsoft YaHei UI';
margin: 0px;
padding: 0px;
background-color: white;
overflow-y: hidden;
overflow-x: hidden;
display: none;
} .alert-div .title {
background: linear-gradient(to bottom, #f2af6f 10%, #f3a02c 90%);
font-size: 48px;
height: 70px;
} .alert-div .title .icon {
margin: 0px 0px 10px 14px;
} .alert-div .title .text {
position: absolute;
top: 9px;
left: 67px;
font-size: 34px;
font-weight: bold;
} .alert-div .title .icon-close {
margin: 8px 12px 10px 14px;
float: right;
} .alert-div .content {
height: 270px;
padding-top: 50px;
} .alert-div .content .icon {
display: block;
} .alert-div .content .text1 {
color: black;
font-size: 38px;
margin-top: 40px;
display: block;
} .alert-div .content .text2 {
color: #444;
font-size: 24px;
margin-top: 10px;
display: block;
} .alert-div .control {
height: 140px;
} .alert-div .control .btn-base {
border: solid 1px #f2af6f;
border-radius: 6px;
font-size: 36px;
font-weight: bold;
padding-left: 40px;
padding-right: 40px;
margin-top: 35px;
background: linear-gradient(to bottom, #f2af6f 10%, #f3a02c 90%);
}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title></title>
<link rel="stylesheet" href="Content/bootstrap.css" />
<link rel="stylesheet" href="Content/font-awesome.css" />
<link rel="stylesheet" href="layer/skin/default/layer.css" />
<link rel="stylesheet" href="Content/trml-myAlert.css" />
</head>
<body>
<div class="container" style="margin-top: 20px;">
<input type="button" class="btn btn-primary btn-test1" value="测试1" />
</div>
<script src="Scripts/jquery-3.1.1.js"></script>
<script src="Scripts/bootstrap.js"></script>
<script src="layer/layer.js"></script>
<script src="Scripts/trml-myAlert-jq.js"></script>
<script>
$(".btn-test1").click(function () {
var tstAlert = new myAlert({
uniqueId: "gushihao",
okBtnFunction: function () {
alert("哈哈");
closeWork(tstAlert);
},
autoCloseTimer: 10000,
autoCloseFunction: function () {
alert("我要自动关闭了!");
closeWork(tstAlert);
},
closeBtnFunction: function () {
alert("你点击了关闭按钮");
closeWork(tstAlert);
}
});
tstAlert.show();
});
</script>
</body>
</html>
基于layer简单的弹层封装的更多相关文章
- layer系列之弹层layer.prompt
layer官网:https://www.layui.com/doc/modules/layer.html layer在线调试:http://layer.layui.com/ 如何使用layer.pro ...
- layer弹层基本参数初尝试
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title> ...
- 基于layer封装的异步加载分部视图弹出层
背景:之前一直用的artdialog,但是样式不是很好看,后来偶然看到layer,觉得不错,但是对于.net mvc来说,不能像artdialog一样弹出分部视图是很难受的.所以下面的方法就解决了. ...
- layer:web弹出层解决方案
layer:web弹出层解决方案 一.总结 一句话总结:http://layer.layui.com/ 1.layer中弹出层tips的使用(代码)是怎样的? 使用还是比较简单方便的 //tips层- ...
- 弹层组件-layer
layer是Layui的一个弹层组建,功能强大,总之我很喜欢,下面介绍这个组件的基本用法. 首先如果只需要使用layer而不想使用Layui可以单独下载layer组件包,页面引入jquery1.8以上 ...
- Bootstrap~大叔封装的弹层
回到目录 对于Bootstrap的弹层,插件有很多,今天主要用的是它自带的功能,通过bootstrap提供的模式窗口来实现的,而大叔主要对使用方法进行了封装,开发人员可以自己动态传入弹层的HTML内容 ...
- layer遮罩层 简单的遮罩层
在这里提供一个简单layer遮罩层,想深入了解可以进入 layer官网 多多学习哦. 先看下HTML页面代码 <!DOCTYPE html> <html lang="en& ...
- layer实现关闭弹出层刷新父界面功能详解
本文实例讲述了layer实现关闭弹出层刷新父界面功能.分享给大家供大家参考,具体如下: layer是一款近年来备受青睐的web弹层组件,她具备全方位的解决方案,致力于服务各水平段的开发人员,您的页面会 ...
- 基于Vue.js PC桌面端弹出框组件|vue自定义弹层组件|vue模态框
vue.js构建的轻量级PC网页端交互式弹层组件VLayer. 前段时间有分享过一个vue移动端弹窗组件,今天给大家分享一个最近开发的vue pc端弹出层组件. VLayer 一款集Alert.Dia ...
随机推荐
- vue 引入Element组件
1.打开cmd,在当前目录中运行: npm i element-ui -S 2.src/main.js(红色的) import Vue from 'vue' import App from './Ap ...
- 【第一部分】01Leetcode刷题
一.二叉树的中序遍历 题目:94. 二叉树的中序遍历.94. Binary Tree Inorder Traversal 解法一: class Solution { public: vector< ...
- Nlog日志之File
一:简介 NLog是一个简单灵活的.NET日志记录类库.通过使用NLog,我们可以在任何一种.NET语言中输出带有上下文的(contextual information)调试诊断信息,根据喜好配置其表 ...
- HDFS的一些配置文件修改
sbin/start-dfs.sh 和 sbin/stop-dfs.sh 在第二行增加如下内容 HDFS_DATANODE_USER=root HDFS_DATANODE_SECURE_USER=hd ...
- [转]centos安装autossh
centos安装autossh $ sudo yum install wget gcc make$ wget http://www.harding.motd.ca/autossh/autossh-1. ...
- C# 之 @ Assembly
@ Assembly指定需要动态编译的类,在编译期间将程序集链接到 ASP.NET 应用程序页(例如网页.用户控件.母版页或 Global.asax 文件),使程序集的所有类和接口都在该页上可用. & ...
- SSH免密远程登陆及详解
SSH(安全外壳协议):为建立在应用层和传输层基础上的安全协议,ssh是目前较为可靠,专门为远程登陆,会话和其他网络服务提供安全 协议.利用ssh协议可以有效的防止远程管理过程中的信息泄露问题,传统的 ...
- 关于mac远程链接window服务器以及实现共享文件
要最近换了新电脑mac 虽然运行速度666 但是真的很多地方都使用不习惯 这里记录一下 关于 远程链接window主机的问题 方便以后用 首先是 链接: 在应用里 找到 然后类似于 wind ...
- Docker数据卷和Docker系统管理(一)
一. 创建和挂载数据卷 1. 创建数据卷 (1)执行下列命令,创建一个名为my-data的数据卷 [root@c720120 ~]# docker volume create my-data my-d ...
- Codeforces 316G3 Good Substrings 字符串 SAM
原文链接http://www.cnblogs.com/zhouzhendong/p/9010851.html 题目传送门 - Codeforces 316G3 题意 给定一个母串$s$,问母串$s$有 ...