App下載

在html5中怎么通過AmazeUI實現(xiàn)模態(tài)框效果?相關案例分享!

猿友 2021-08-02 14:35:51 瀏覽數(shù) (1803)
反饋

我們在學習一門新的框架的時候是需要有扎實的基礎才可以讓你更好的把握新框架的學習效率的,今天我們就來分享個有關于:“在html5中怎么通過AmazeUI實現(xiàn)模態(tài)框效果?”這個問題的解決方法的吧!

本文與《【Ratchet】模態(tài)框》(點擊打開鏈接)為姊妹篇,相比之下,AmazeUI的模態(tài)框,更加接近于一個alert(),不適合承載過多的內容,但是其優(yōu)點就是可以通過JS操控,Ratchet僅能通過超級鏈接a標簽打開。

AmazeUI的模態(tài)框效果如下:

完全就如同某些手機瀏覽器對alert()的處理。其現(xiàn)實代碼如下:

<!--使用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">
        <!--自動適應移動屏幕-->
        <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
        <!--優(yōu)先使用webkit內核渲染-->
        <meta name="renderer" content="webkit">
        <!--不要被百度轉碼-->
        <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的時候要注意,必須先引入jQuery,再引入amazeui,因為這個框架是基于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)框的內容
                </div>
                <div class="am-modal-footer">
                 <span class="am-modal-btn">關閉</span>
                </div>
            </div>
        </div>
    </body>
</html>
<script>
function openModal(){
 $('#my-alert').modal();
}
</script>

注意到,這個id為my-alert的模態(tài)框,是通過button的onclick事件所觸發(fā)的openModal()函數(shù)觸發(fā)的。

其JS打開模態(tài)框的代碼就一行,先獲取了模態(tài)框的id之后,通過modal()方法打開。

相信有基礎的小伙伴們這下都知道了對于:“在html5中怎么通過AmazeUI實現(xiàn)模態(tài)框效果?”這個問題的實現(xiàn)方法了吧!那么到此這篇關于html5中的AmazeUI框架問題和解決方法的分享就到這邊了,更多的相關內容我們都可以在 W3Cschool進行搜索和學習! 


0 人點贊