基於JQ的自定義彈窗組件

来源:https://www.cnblogs.com/wow-jerry/archive/2018/11/06/9914390.html
-Advertisement-
Play Games

window.onresize = function() { /* 預設設置字體為可視區/7.5 max:256px min */ document.documentElement.style.fontSize = document.documentElement.clientWidth / 7.5 ...


<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>基於JQ的自定義彈窗組件</title>

    <link rel="stylesheet" href="css/reset.css">
    <link rel="stylesheet" href="css/popup.css">
 </head>
  <style>
  a {display: inline-block;text-align: center;text-decoration: none;font-size:20px;background: #e5e5e5;}
  </style>
  <body> <div id="box"> <a href="javascript:;" class="btnModel">按鈕彈窗</a> <a href="javascript:;" class="tipModel">提示彈窗</a> <a href="javascript:;" class="loadModel">載入彈窗</a> <input type="submit" value="提交"> </div> </body>
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script src="js/rem.js"></script>
<script src="js/popup.js"></script>
<script>
$(function () {

//按鈕彈窗
$(".btnModel").on("click", function() {
       var popupModel = new Popup();
            popupModel.init({
title : '你好,我是標題',
tipText : '我是文本內容',
showBtn : true,
showDouble : true,
success : function (res) {
console.log(res);
if(res.confirm){
console.log('用戶點擊了確認' + JSON.stringify(res));
}else{
console.log('用戶點擊了取消' + JSON.stringify(res));
}
}
});
});
//提示彈窗
$(".tipModel").on("click", function() {
var popupModel = new Popup();
popupModel.init({
title : '提示彈窗標題',
tipText : '提示彈窗文本'
});
setTimeout(function () {
popupModel.close();
}, 3000)
});
//載入彈窗
$(".loadModel").on("click", function() {
var popupModel = new Popup();
popupModel.init({
loadImg: './img/load.gif'
});
setTimeout(function () {
popupModel.close();
}, 1500)
});
})
</script>
</html>
window.onresize = function() {
    /*
        預設設置字體為可視區/7.5 -----max:256px min
    */
    document.documentElement.style.fontSize = document.documentElement.clientWidth / 7.5 + 'px';
    
    var deviceWidth = document.documentElement.clientWidth;
    
    if (deviceWidth > 640) {
        deviceWidth = 640
    }
};
onresize();
rem.js
@charset "UTF-8";

body,div,dl,dt,dd,ul,li,pre,form,fieldset,select,input,textarea,button,p,img,iframe{  margin: 0;  padding: 0;  }
h1,h2,h3,h4,h5,h6{ font-weight:normal; margin: 0; padding: 0; }
body{  width: 100%;  font-family: "microsoft yahei","SimSun","宋體";  background-color: #fff; -webkit-overflow-scrolling: touch;overflow-scrolling: touch; }
/* 重置button邊框 */
button{ border: none; }
/* 去掉列表前的標識, li 會繼承 */
ol,ul{list-style: none;}
/* 讓鏈接預設不顯示下劃線*/
a{cursor: pointer;text-decoration: none;}
/* 清理浮動 */
.clearfix:before,.clearfix:after{ display: block;  content: " ";  clear: both;  }
/* for ie67*/
.clearfix{zoom: 1;}
/* HTML5 媒體文件跟 img 保持一致 */
audio,canvas,video{  display: inline-block;  *display: inline;  *zoom: 1;  }
address,caption,cite,code,dfn,em,th{  font-style: normal;  font-weight: normal;  }
.box-sizing{  -moz-box-sizing: border-box;  -webkit-box-sizing: border-box;  -o-box-sizing: border-box;  -ms-box-sizing: border-box;  box-sizing: border-box;  }
/*p{ text-align:justify; text-justify:distribute;}*/
div, p, span {  text-overflow: ellipsis;  word-break: break-all;  word-wrap: break-word;  }
/*iphone及ipad下輸入框預設內陰影*/
input, button {  outline: none;  -webkit-appearance: none;  }
textarea {  resize: none;  outline: none;  }
img {  vertical-align: middle;  border: 0;  width: 100%;  }
a:active, a:hover {  outline: 0;  }
/*ios和android下觸摸元素時出現半透明灰色遮罩*/
a, input {  border: none;  outline: none;  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);  }
input[type=button] {  cursor: pointer;  }
input[type=submit] {  cursor: pointer;  }
reset.css
@charset "UTF-8";
/*
   彈窗樣式class --alert_Wrap 儘量不要修改樣式名稱,如若修改,JS文件中class也要做對應修改
*/
/*遮罩層*/
.alert_Wrap{
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0,0,0,0.7);
    z-index: 99;
    text-align: center
}
/*彈窗盒子*/
.alert_Wrap .alertCont{
    position: absolute;
    border-radius: 5px;
    text-align: center;
    width: 5.3rem;
    background: white;
    top:35%;
    left:1.1rem;
    box-sizing: border-box;
}
/*載入彈窗中的彈窗盒子*/
.alert_Wrap .alertLoad{
    background: rgba(0,0,0,0);
}
/*彈窗標題*/
.alert_Wrap .alertTitle{
    font-size: 0.28rem;
    color: black;
    text-align: center;
    padding: 0.2rem;
    word-wrap: break-word;
}
/*彈窗文本*/
.alert_Wrap .alertText{
    font-size: 0.25rem;
    color: black;
    text-align: center;
    padding-bottom: 0.15rem;
    word-wrap: break-word;
}
/*彈窗文本域*/
.alert_Wrap .alertArea{
    font-size: 0.28rem;
    color: black;
    text-align: center;
    padding-top: 0.1rem;
    padding-bottom: 0.15rem;
    word-wrap: break-word;
}
/*彈窗按鈕*/
.alert_Wrap .alertBtn{
    width: 100%;
    background: white;
    text-align: center;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    height: auto;
}
.alert_Wrap .alertBtn input{
    width: 50%;
    float: left;
    background: whitesmoke;
    color: black;
    cursor: pointer;
    padding: 0.2rem;
    font-size: 0.28rem;
}
/*取消按鈕*/
.alert_Wrap .alertBtn .cancel_btn{
    border-right: 1px solid #d3cdcd;
    border-top: 1px solid #d3cdcd;
    border-bottom-left-radius: 5px;
}
/*確認按鈕*/
.alert_Wrap .alertBtn .alert_confirm_btn{
    border-top: 1px solid #d3cdcd;
    border-bottom-right-radius: 5px;
    color: rgb(0, 174, 255);
}
.alert_Wrap .alertBtn .confirm_int{
    width: 100%;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}
/*載入圖片*/
.alert_Wrap .load_img{
    width: 40px;
    height: 40px;
    position: absolute;
    left: 50%;
    top:50%;
    margin-left: -20px;
    margin-top: -20px;
}
@media screen and (max-width:321px) {
    html,
    body {
        font-size: 14px;
        line-height: 18px;
    }
    .alert_Wrap .alertInput{
        margin-left: 0.03rem;
    }
}
@media screen and (min-width:321px) and (max-width:400px) {
    html,
    body {
        font-size: 16px;
        line-height: 22px;
    }
    .alert_Wrap .alertInput{
        margin-left: 0.03rem;
    }
}
@media screen and (min-width:400px) {
    html,
    body {
        font-size: 18px;
        line-height: 28px;
    }
    .alert_Wrap .alertInput{
        margin-left: 0.04rem;
    }
}
@media screen and (min-width:640px){
    html,body {
        font-size: 18px;
        line-height: 28px;
    }
    .alert_Wrap .alertInput{
        margin-left: 0.05rem;
    }
}
popup.css
/*
    @description --model:1.btn 2.tip 3.load
    @param --setting --存放配置 $.extend()  外部配置可以覆蓋預設配置

*/
function Popup() {
    this.alertWrap = null;//遮罩層
    this.alertCont = null;//彈窗盒子
    this.result = {}; //消息存放
    //預設配置參數
    this.setting = {
        // title:'標題',
        // tipText:'說明文字',
        // textArea : '額外添加區域',
        // loadImg : '載入圖片url',
        showBtn: false,   //true 顯示按鈕 false 隱藏 (預設沒有按鈕)
        showDouble: false,  //true 雙按鈕 false 單按鈕
        cancelText: '取消',//預設,外部定義可覆蓋
        confirmText: '確認'
    }
}
Popup.prototype.init = function (options) {
    $.extend(this.setting, options); //預設配置與自定義配置
    this.mark();
    this.create();
    this.dir();
};
//遮罩
Popup.prototype.mark = function () {
    this.alertWrap = $("<div class='alert_Wrap'></div>");
};
//彈窗
Popup.prototype.create = function () {
    this.alertCont = $("<div class='alertCont'></div>");
    //title
    if (this.setting.title) {
        this.alertTitle = $("<div class='alertTitle'>" + this.setting.title + "</div>");
        this.alertCont.append(this.alertTitle);
    }
    //tipText
    if (this.setting.tipText) {
        this.alertText = $("<div class='alertText'>" + this.setting.tipText + "</div>");
        this.alertCont.append(this.alertText);
    }
    //textArea
    if (this.setting.textArea) {
        this.alertArea = $("<div class='alertArea'>" + this.setting.textArea + "</div>");
        this.alertCont.append(this.alertArea);
    }
    //loadImg
    if (this.setting.loadImg) {
        this.alertCont.addClass("alertLoad");
        this.alertLoadImg = $("<img class='load_img' src='" + this.setting.loadImg + "' />");
        this.alertCont.append(this.alertLoadImg);
    }
    //showBtn
    if (this.setting.showBtn && this.setting.showDouble === true) {
        //
        this.alertBtn = $("<div class='alertBtn clearfix'></div>");
        this.cancel_btn = $("<input class='cancel_btn' type='button' value=" + this.setting.cancelText + ">");
        this.confirm_btn = $("<input class='alert_confirm_btn' type='button' value=" + this.setting.confirmText + ">");
        this.alertBtn.append(this.cancel_btn);
        this.alertBtn.append(this.confirm_btn);
        this.alertCont.append(this.alertBtn);
    } else if (this.setting.showBtn && this.setting.showDouble === false) {
        //
        this.alertBtn = $("<div class='alertBtn'></div>");
        this.confirm_btn = $("<input class='alert_confirm_btn confirm_int' type='button' value=" + this.setting.confirmText + ">");
        this.alertBtn.append(this.confirm_btn);
        this.alertCont.append(this.alertBtn);
    }
    this.alertWrap.append(this.alertCont);
    $("body").append(this.alertWrap);
};
//自定義函數
Popup.prototype.dir = function () {
    var _this = this;
    if (this.cancel_btn) {
        this.cancel_btn.on("click", function () {
            _this.alertWrap.remove();
            _this.result = {
                cancel: true,
                showCancel: "取消操作!"
            };
            if (_this.setting.success) {
                _this.setting.success(_this.result);
            }
        })
    }
    if (this.confirm_btn) {
        this.confirm_btn.on("click", function () {
            _this.alertWrap.remove();
            _this.result = {
                confirm: true,
                showCancel: "確認操作!"
            };
            if (_this.setting.success) {
                _this.setting.success(_this.result);
            }
        })
    }
};
//關閉
Popup.prototype.close = function () {
    this.alertWrap.remove();
};
popup.js

 

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 今天發現了一種ajax上傳圖片的方式,是以前沒有用過的,首先來說下為什麼要用這種方式。是因為原來後臺是用的form表單的方式來提交表單數據的。但是覺得呢,這種方式不太好,因為要刷新頁面,前臺只用控制台看不到傳輸的參數(如果哪位大神知道怎麼看到,請不吝賜教),所以我們就改成了ajax的方式,結果後臺老 ...
  • 第1章 伺服器端渲染基礎本章主要講解客戶端與伺服器端渲染的概念,分析客戶端渲染和伺服器端渲染的利弊,帶大家對伺服器端渲染有一個粗淺認識。1-1 課程導學1-2 什麼是伺服器端渲染1-3 什麼是客戶端渲染1-4 React 客戶端渲染的優勢與弊端第2章 React中的伺服器端渲染本章將藉助Node.j ...
  • 1.手機郵箱正則 近兩年出來很多新號碼,聽說199什麼的都有了- -導致以前的正則不能用了....這就很難過,總是過一段時間出一種新號碼。因此,我決定使用返樸歸真的手機正則。 手機正則:var reg=/^1[0-9]\d{9}$/; 郵箱正則:var mailReg = /^[a-zA-Z0-9_ ...
  • 準備工具 ====== "Node.js" Angular requires Node.js version 8.x or 10.x. 查看當前你的node版本可以在CMD中輸入 開發工具強烈推薦 "visual studio Code" 安裝 agular_cli 新建工程 用CLI命令建立 ng ...
  • 微信小程式組件里沒有下拉框,正好要用到,記下來以後參考 wxml代碼 wxss代碼 js代碼 效果 ...
  • 這篇文章介紹了Vue.js 父子組件之間通信的十種方式,不管是初學者還是已經在用 Vue 的開發者都會有所收穫。無可否認,現在無論大廠還是小廠都已經用上了 Vue.js 框架,簡單易上手不說,教程詳盡,社區活躍,第三方套件還多。真的是前端開發人員必備技能。而且在面試當中也往往會問到關於 Vue 方面... ...
  • ** 創建string對象 *** var str ="acb"; ** 方法和屬性 ** 屬性 length:字元串的長度 ** 方法 (1)與HTML相關的方法 - bold():加粗 - fontcolor():設置字體的顏色 - fontsize():設置字體的大小(1-7) - link( ...
  • 看到掘金上翻出一個老梗,前端如何不帶髒字得罵產品經理傻逼(sb),複製(!(~+[]) + {})[--[~+""][+[]] * [~+[]] + ~~!+[]] + ({} + [])[[~!+[]] * ~+[]]到瀏覽器控制台回車,看到輸出sb二字。 原理很簡單,就是取字元串里的字母進行拼湊 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...