您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關(guān)AmazeUI中模態(tài)框的實(shí)現(xiàn)方法的內(nèi)容。小編覺(jué)得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過(guò)來(lái)看看吧。
AmazeUI的模態(tài)框效果如下:
完全就如同某些手機(jī)瀏覽器對(duì)alert()的處理。其現(xiàn)實(shí)代碼如下:
<!--使用HTML5開(kāi)發(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開(kāi)發(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()">打開(kāi)模態(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)框,是通過(guò)button的onclick事件所觸發(fā)的openModal()函數(shù)觸發(fā)的。
其JS打開(kāi)模態(tài)框的代碼就一行,先獲取了模態(tài)框的id之后,通過(guò)modal()方法打開(kāi)。
感謝各位的閱讀!關(guān)于“AmazeUI中模態(tài)框的實(shí)現(xiàn)方法”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,讓大家可以學(xué)到更多知識(shí),如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。