前端js弹出框组件使用方法


Posted in Javascript onAugust 24, 2020

下面分享一个js 弹出窗, 分 toast , dialog , load 三种弹窗 , 下面用js css 来实现以下:

首先是js代码 | 采用了 es6 的写法

//公共弹窗加载动画

const DIALOG_TOAST = '1',
 DIALOG_DIALOG = '2',
 DIALOG_LOAD = '3',

class Dialog {

 constructor(type = DIALOG_DIALOG,
  dialogContent = '请求失败',
  wrapClassName = 'common-dialog-wrap',
  dialogWrapClassName = 'common-dialog-content-wrap',
  contentClassName = 'common-dialog-content',
  btnClassName = 'common-btn',
  btnContent = '确定') {


 this.type = type;

 //吐司
 if (type == DIALOG_TOAST) {
  this.dialog = document.createElement('div');
  this.dialog.className = 'common-toast';
  this.dialog.innerHTML = dialogContent;

 }
 //加载动画
 else if (type == DIALOG_LOAD) {
  this.dialog = document.createElement('div');
  this.dialog.className = wrapClassName;
  this.figure = document.createElement('figure');
  this.figure.className = 'common-loadGif';
  this.img = document.createElement('img');
  this.img.src = getAbsolutePath() + '/fenqihui/static/bitmap/travel/loadgif.gif';
  this.figure.appendChild(this.img);
  this.dialog.appendChild(this.figure);

 } else if (type == DIALOG_DIALOG) {
  this.dialog = document.createElement('div');
  this.dialog.className = wrapClassName;
  this.dialogWrap = document.createElement('div');
  this.dialogWrap.className = dialogWrapClassName;
  this.conetent = document.createElement('p');
  this.conetent.innerHTML = dialogContent;
  this.conetent.className = contentClassName;
  this.confirmButton = document.createElement('p');
  this.confirmButton.innerHTML = btnContent;
  this.confirmButton.className = btnClassName;
  this.dialogWrap.appendChild(this.conetent);
  this.dialogWrap.appendChild(this.confirmButton);
  this.dialog.appendChild(this.dialogWrap);
  this.bindEvent();
 }


 }


 bindEvent() {
 this.confirmButton.addEventListener('click', ()=> {
  this.hide();
 })
 }

 show(time) {
 document.querySelector('body').appendChild(this.dialog);
 $(this.dialog).css('display', 'block');

 if (this.type == DIALOG_TOAST) {

  setTimeout(()=> {
  $(this.dialog).css('display', 'none');
  }, time);
 }

 }

 hide() {
 $(this.dialog).css('display', 'none');
 }

}

css 文件如下:

/*公共弹窗*/
.common-dialog-wrap {
 position: fixed;
 background: rgba(0,0,0,.7);
 z-index: 100;
 height: 100%;
 width: 100%;
 top: 0;
}

.common-dialog-content {
 height: 2rem;
 border-bottom: 1px solid #ccc7c7;
 line-height: 2rem;
 text-align: center;
 font-size: .65rem;
}

.common-btn {
 text-align: center;
 height: 2rem;
 color: orange;
 line-height: 2rem;
}

.common-dialog-content-wrap{
 background: #fff;
 width: 10rem;
 height: 4rem;
 border-radius: 5px;
 position: fixed;
 left: 0;
 top:0;
 right: 0;
 bottom: 0;
 margin: auto;
}

/*吐司样式*/
.common-toast{
 height: 1.6rem;
 width: 4rem;
 box-sizing: content-box;
 color: #fff;
 padding: 0 10px;
 position: fixed;
 left: 0;
 top:0;
 bottom: 0;
 right: 0;
 text-align: center;
 line-height: 1.6rem;
 margin: auto;
 background: rgba(0,0,0,.7);
 border-radius: 2rem;
}

.common-loadGif{
 height: 4rem;
 width: 4rem;
 position: fixed;
 top:0;
 left: 0;
 bottom: 0;
 right: 0;
 margin: auto;
}

.common-loadGif img{
 height: 100%;
 width: 100%;
 border-radius: 10px;
}

使用方式

new Dialog(DIALOG_DIALOG).show() | hide()
new Dialog(DIALOG_LOAD).show() | hide()
new Dialog(DIALOG_TOAST).show(time : number) | hide()

效果如下

前端js弹出框组件使用方法

前端js弹出框组件使用方法

前端js弹出框组件使用方法

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

Javascript 相关文章推荐
JS取得绝对路径的实现代码
Jan 16 Javascript
学习JavaScript设计模式之责任链模式
Jan 18 Javascript
Bootstrap CSS布局之代码
Dec 17 Javascript
jQuery实现立体式数字动态增加(animate方法)
Dec 21 Javascript
Angular使用ng-messages与PHP进行表单数据验证
Dec 28 Javascript
AngularJS使用angular.bootstrap完成模块手动加载的方法分析
Jan 19 Javascript
JS实现DIV高度自适应窗口示例
Feb 16 Javascript
slideToggle+slideup实现手机端折叠菜单效果
May 25 Javascript
5分钟学会Vue动画效果(小结)
Jul 21 Javascript
微信小程序 Animation实现图片旋转动画示例
Aug 22 Javascript
vue之debounce属性被移除及处理详解
Nov 13 Javascript
适合后台管理系统开发的12个前端框架(小结)
Jun 29 Javascript
完美解决JS文件页面加载时的阻塞问题
Dec 18 #Javascript
教你一步步用jQyery实现轮播器
Dec 18 #Javascript
Angular.js实现注册系统的实例详解
Dec 18 #Javascript
无阻塞加载js,防止因js加载不了影响页面显示的问题
Dec 18 #Javascript
Node.js连接postgreSQL并进行数据操作
Dec 18 #Javascript
纯js实现悬浮按钮组件
Dec 17 #Javascript
Jquery Easyui搜索框组件SearchBox使用详解(19)
Dec 17 #Javascript
You might like
sony ICF-2010 拆解与改装
2021/03/02 无线电
phpmailer在服务器上不能正常发送邮件的解决办法
2014/07/08 PHP
PHP获取某个月最大天数(最后一天)的方法
2015/07/29 PHP
PHP实现基于图的深度优先遍历输出1,2,3...n的全排列功能
2017/11/10 PHP
让iframe框架网页在任何浏览器下自动伸缩
2006/08/18 Javascript
$()JS小技巧
2007/07/21 Javascript
javascript网页关闭时提醒效果脚本
2008/10/22 Javascript
javascript查找字符串中出现最多的字符和次数的小例子
2013/10/29 Javascript
让jQuery与其他JavaScript库并存避免冲突的方法
2013/12/23 Javascript
JS实现局部选择打印和局部不选择打印
2014/04/03 Javascript
对比分析json及XML
2014/11/28 Javascript
angularjs学习笔记之完整的项目结构
2015/09/26 Javascript
JQuery 设置checkbox值二次无效的解决方法
2016/07/22 Javascript
js+html制作简单日历的方法
2017/06/27 Javascript
node koa2实现上传图片并且同步上传到七牛云存储
2017/07/31 Javascript
详解Vue.js使用Swiper.js在iOS
2018/09/10 Javascript
详解在vue-test-utils中mock全局对象
2018/11/07 Javascript
[38:30]2014 DOTA2国际邀请赛中国区预选赛 LGD-GAMING VS CIS 第一场2
2014/05/24 DOTA
[02:17]《辉夜杯》TRG战队巡礼
2015/10/26 DOTA
python写入已存在的excel数据实例
2018/05/03 Python
Python装饰器知识点补充
2018/05/28 Python
Python同步遍历多个列表的示例
2019/02/19 Python
Python异常处理例题整理
2019/07/07 Python
HTML的form表单和django的form表单
2019/07/25 Python
python实现静态服务器
2019/09/05 Python
python绘制玫瑰的实现代码
2020/03/02 Python
Django 实现将图片转为Base64,然后使用json传输
2020/03/27 Python
解决flask接口返回的内容中文乱码的问题
2020/04/03 Python
Python使用requests模块爬取百度翻译
2020/08/25 Python
全球知名的婚恋交友网站:Match.com
2017/01/05 全球购物
座谈会主持词
2014/03/20 职场文书
中文专业自荐书
2014/06/29 职场文书
爱牙日宣传活动总结
2015/02/05 职场文书
2015年教师学期工作总结
2015/04/30 职场文书
民间借贷纠纷答辩状
2015/08/03 职场文书
JavaScript圣杯布局与双飞翼布局实现案例详解
2022/08/05 Javascript