co-dialog彈出框組件-版本v2.0.0

来源:https://www.cnblogs.com/hao5599/archive/2018/09/13/9640046.html
-Advertisement-
Play Games

co-dialog 版本v2.0.0 瀏覽器預設的alert彈出框 這是一個基礎的彈出框 co-dialog彈出框 你可以拖動我一下 這是一個layout佈局,靠右下角顯示的彈出框 超時自動關閉 顯示取消按鈕和功能 彈出框內容自定義 自定義動畫 確認回調函數 沒有圖片 線上地址 https://ko ...


co-dialog theme 訪問git:co-dialog 版本v2.0.0

主題2

coog.app('.theme2').use({
   title: 'JUST CHECKING.',
   message: 'Delete your account?' + "<p style='font-size:12px;'>This action is final and you will be unable to recover any data</p>",
   isDrag: true,
   layout: 'center',
   titleColor: '#865FDF',
   closeColor: '#865FDF',
   showCancleButton: true,
   confirmButtonText: 'YES',
   cancleButtonText: 'NO',
   footerText: "",
   confirmButtonBackground: '#865FDF',
   cancleButtonBackground: '#865FDF',
   confirmButtonColor: '#fff',
   onHeaderBefore: function (node) {
      this.style.backgroundColor = "#fff"
      this.style.borderBottom = "1px solid #ddd"
   },
   onFooterBefore: function (node) {
      this.style.backgroundColor = "#865FDF"
      this.style.marginBottom = '0'
      this.style.padding = '10px 0'
   },
   confirmCallback: function () {
      coog.app(".test3").use({
         titleColor: '#45B680',
         title: 'Return Results',
         message: 'Success Delete',
         confirmButtonText: 'YES',
         confirmCallback: function () {
            coog.app('.test').show()
         }
      })
      .show()
   }
})
.show()

 

 

主題3

coog
.app('.theme3')
.use({
    title: 'This is a title',
    message: 'We’re also releasing our first step towards showcasing what’s possible when using GitHub Desktop. In 1.4, we’ve added our release notes to the app to highlight what’s changed since the last release, and to recognize—and thank—our amazing contributors',
    isClose: true,
    isDrag: true,
    layout: 'center',
    animation: false,
    customAnimation: 'slideInDown',
    titleColor: '#333',
    closeColor: '#333',
    confirmButtonText: "Read More",
    confirmButtonColor: '#333',
    animation: false,
    customAnimation: 'swing',
    onDialogBefore: function () {
       this.style.background = "#F1F1F1";
       this.style.border = "3px solid #333";
    },
    onHeaderBefore: function () {
       this.style.background = "#F1F1F1";
       this.style.borderBottom = "2px solid #333";
       this.style.margin = "0 30px";
       this.style.paddingLeft = "0";
       this.style.paddingRight = "0";
    },
    onBodyBefore: function () {
       this.style.fontSize = "14px";
       this.style.textAlign = "left";
    },
    onFooterBefore: function () {
       this.style.float = 'left'
       this.style.marginLeft = '30px'
    },
    methods: function () {
       this.footer.$refs.button.children[0].style.background = "transparent";
       this.footer.$refs.button.children[0].style.border = "2px solid #333"
    }
})
.show();

 

主題4

coog
.app('.theme4')
.use({
    title: 'Dialog Only Page',
    message: "I can only be served as a dialog, and I don't need a data-rel='dialog' attribute on a link",
    isClose: true,
    isDrag: true,
    layout: 'center',
    animation: false,
    customAnimation: 'bounceInLeft',
    showConfirmButton: false,
    onHeaderBefore: function (){
      this.style.background = "#2A2A2A"
    },
    onBodyBefore: function (){
      this.style.fontSize = "14px"
    },
})
.show();

 

 

以下訪問官網https://koringz.github.io/co-dialog/index

 

瀏覽器預設的alert彈出框

alert("預設alert功能")

alert

 

這是一個基礎的彈出框

coog.app(".base").use("這是一個基礎的彈出框").show()

 

co-dialog彈出框

coog.app(".alert").use(
 "標題",
 "這是一個CoDialog組件",
 "OK"
).show()

 

你可以拖動我一下

coog.app(".try-drag").use({
    title: "拖動-isDrag",
    message: "請嘗試拖動視窗",
    isDrag: true,
}).show()

 

這是一個layout佈局,靠右下角顯示的彈出框

coog.app(".layout-right-bottom").use({
    title: "佈局-layout",
    message: "這是一個layout佈局,靠右下角顯示的彈出框",
    layout: "right bottom",
}).show()

 

超時自動關閉

coog.app(".timeout").use({
    title: "超時-timeout",
    message: "超時自動關閉",
    timeout: 2000,
}).show()

 

 

顯示取消按鈕和功能

coog.app(".show-cancle").use({
    title: "取消-show-cancle",
    message: "顯示取消按鈕和功能",
    showCancleButton: true,
    isGesture: true,
    isDrag: true,
}).show()

 

彈出框內容自定義

coog.app(".custom").use({
    isGesture: true,
    isDrag: true,
    onHeaderBefore: function  () {
     this.innerHTML = "<span ref='top'>頂部</span>"
   },
    onBodyBefore: function  () {
     this.innerHTML = "<span ref='middle'>中間</span>"
   },
    onFooterBefore: function  () {
     this.innerHTML = "<span ref='bottom'>底部</span>"
   },
    methods: function  () {
     this.header.$refs.top.style.color =  "#4E5198"
     this.body.$refs.middle.style.color =  "#4E5198"
     this.footer.$refs.bottom.style.color =  "#4E5198"
   }
}).show()

 

自定義動畫


coog.app(".customAnimation").use({
    title: "自定義動畫-customAnimation",
    message: "基於animated.css類實現自定義動畫",
    isClose: true,
    layout: "center",
    isDrag: true,
    animation: false,
    customAnimation: "slideInDown",
}).show()

 

確認回調函數


coog.app(".confirmCallback").use({
    title: "確認回調-confirmCallback",
    message: "你想清除確認回調函數嗎?",
    showCancleButton: true,
    confirmCallback: function  () {
     coog.app(".confirm-clear-callback").use("你已確定清除").show()
   },
}).show()

沒有圖片 線上地址 https://koringz.github.io/co-dialog/index

 

紫色主題


coog.app(".theme-purple").use({
    title: "紫色主題-purple-theme",
    message: "Your have seen the purple theme",
    layout: "right top",
    isGesture: true,
    isDrag: true,
    titleColor: "#4E5198",
    closeColor: "#4E5198",
    showCancleButton: true,
    confirmButtonBackground: "#4E5198",
    cancleButtonText: "Confirm",
    confirmButtonText: "Cancle",
}).show()

 

 


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

-Advertisement-
Play Games
更多相關文章
  • 請求重定向:載入頁面之後,除了用js做重定向之外,我們還可以直接用<meta>標簽做重定向。 1 <meta http-equiv="refresh" content="5;url=http://www.baidu.com" /> 5秒後跳轉 超鏈接:在當前的iframe中打開新的頁面 超鏈接發送郵 ...
  • 一.屬性 屬性(如果你的選擇器選出了多個對象,那麼預設只會返回第一個屬性) attr(屬性名|屬性值) --一個參數是獲取屬性的值,兩個參數是設置屬性值 --點擊圖片載入示例 removeAttr(屬性名) --刪除屬性的值 prop(屬性名|屬性值) --屬性的返回值是布爾類型 --單選,反選,取 ...
  • 1. 安裝 npm i vue-ueditor --save-dev 2.從nodemodels 取出ueditor1_4_3_3 這整個目錄,放入vue 的 static 目錄 3.配置 ueditor.config.js 的 21行代碼 更改路徑 var URL = '/static/uedit ...
  • 、 今天有幸給大家分享一下谷歌瀏覽器針對移動網頁測試的技巧,主要是最近做個微信公共號網站。所以就要對頁面測試拉。移動網頁我們最長測得就是各種手機大小的頁面效果和出現網路問題的效果展示。 今天就簡單分享下在谷歌瀏覽器測試頁面的適配和網速限制展示。 頁面的適配 自帶的手機模式 首先打開谷歌瀏覽器按F12 ...
  • 學了JavaScript有一段時間了,但是對閉包還是不太理解,於是懷著心中的疑問做了幾個小實驗,終於有點明白了。 首先看一下MDN上的定義:閉包是函數和聲明該函數的詞法環境的組合。 簡單來說,閉包是一種現象。 我在搞清楚了2個概念後,理解了閉包。 首先是關於函數以及函數調用的概念: 我們來做一個簡單 ...
  • 通過計算某個扇形區域的值占整個圓的百分比來得到這個扇形的角度,從而根據startAngle這個屬性來設定圖形的開始渲染的角度,使點擊某個扇形時圓環旋轉使之始終對準某個點。 期間考慮到某扇形區域太小點擊不到,來設置最小扇形區域。 const myChartContainer = document.ge ...
  • 原諒轉行小白比較笨,看了那麼多的文檔API仍是沒學好webpack,這陣子公司閑決定把webpack學完,現在開始表演,希望獲得老師轉身! 1、開門見山首先就是安裝,先安裝node.js,然後打開命令行(cmd)安裝webpack,執行命令:npm install webpack -g ok,檢查你 ...
  • const myChartContainer = document.getElementById( id ); const resizeMyChartContainer = function () { myChartContainer.style.width = ( window.innerWidt ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...