這篇文章給大家分享的是有關(guān)AmazeUI中模態(tài)框的實(shí)現(xiàn)方法的內(nèi)容。小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過來看看吧。
成都創(chuàng)新互聯(lián)專注為客戶提供全方位的互聯(lián)網(wǎng)綜合服務(wù),包含不限于網(wǎng)站建設(shè)、成都做網(wǎng)站、屯昌網(wǎng)絡(luò)推廣、微信小程序開發(fā)、屯昌網(wǎng)絡(luò)營(yíng)銷、屯昌企業(yè)策劃、屯昌品牌公關(guān)、搜索引擎seo、人物專訪、企業(yè)宣傳片、企業(yè)代運(yùn)營(yíng)等,從售前售中售后,我們都將竭誠(chéng)為您服務(wù),您的肯定,是我們最大的嘉獎(jiǎng);成都創(chuàng)新互聯(lián)為所有大學(xué)生創(chuàng)業(yè)者提供屯昌建站搭建服務(wù),24小時(shí)服務(wù)熱線:18980820575,官方網(wǎng)址:aaarwkj.com
AmazeUI的模態(tài)框效果如下:
完全就如同某些手機(jī)瀏覽器對(duì)alert()的處理。其現(xiàn)實(shí)代碼如下:
<!--使用HTML5開發(fā)--> <!doctype html> <html class="no-js"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <!--自動(dòng)適應(yīng)移動(dòng)屏幕--> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"> <!--優(yōu)先使用webkit內(nèi)核渲染--> <meta name="renderer" content="webkit"> <!--不要被百度轉(zhuǎn)碼--> <meta http-equiv="Cache-Control" content="no-siteapp"/> <!--以下才是引入amazeui資源--> <link rel="stylesheet" href="assets/css/amazeui.min.css"> <link rel="stylesheet" href="assets/css/app.css"> <!--引入js的時(shí)候要注意,必須先引入jQuery,再引入amazeui,因?yàn)檫@個(gè)框架是基于jQuery開發(fā)的--> <script src="assets/js/jquery.min.js"></script> <script src="assets/js/amazeui.min.js"></script> <title>Modal</title> </head> <body> <button class="am-btn am-btn-primary" οnclick="openModal()">打開模態(tài)框</button> <div class="am-modal am-modal-alert" tabindex="-1" id="my-alert"> <div class="am-modal-dialog"> <div class="am-modal-bd"> 模態(tài)框的內(nèi)容 </div> <div class="am-modal-footer"> <span class="am-modal-btn">關(guān)閉</span> </div> </div> </div> </body> </html> <script> function openModal(){ $('#my-alert').modal(); } </script>
注意到,這個(gè)id為my-alert的模態(tài)框,是通過button的onclick事件所觸發(fā)的openModal()函數(shù)觸發(fā)的。
其JS打開模態(tài)框的代碼就一行,先獲取了模態(tài)框的id之后,通過modal()方法打開。
感謝各位的閱讀!關(guān)于“AmazeUI中模態(tài)框的實(shí)現(xiàn)方法”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,讓大家可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!
本文名稱:AmazeUI中模態(tài)框的實(shí)現(xiàn)方法
標(biāo)題URL:http://aaarwkj.com/article16/jegpdg.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供App設(shè)計(jì)、ChatGPT、網(wǎng)站設(shè)計(jì)、全網(wǎng)營(yíng)銷推廣、手機(jī)網(wǎng)站建設(shè)、建站公司
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)