91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

JS怎么實現定時自動消失的彈出窗口

發布時間:2022-04-26 11:33:37 來源:億速云 閱讀:245 作者:iii 欄目:開發技術

本篇內容介紹了“JS怎么實現定時自動消失的彈出窗口”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

一、Demo.html

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title>js彈框3秒后自動消失</title>
        <link rel="stylesheet" type="text/css" href="./js/bootstrap/css/bootstrap.css" rel="external nofollow" />
        <link rel="stylesheet" type="text/css" href="./css/demo.css" rel="external nofollow" />            
    </head>
    <body>
        <button onclick="showModal()">點擊彈出模態框</button>
        
        <div class='modal my-modal-alert' id='my-modal-alert'>
            <div class='modal-dialog boxBodySmall'>
                <div class='modal-content'>
                    <div class='modal-header boxHeader'>
                        <button type='button' class='close boxClose' data-dismiss='modal'>
                            <span aria-hidden='true'>×</span><span class='sr-only'>Close</span>
                        </button>
                        <h5 class='modal-title boxTitle' id='modal-title'>模態框</h5>
                    </div>
                    <div class='modal-body' id='modal-body-alert'>
                        <div id='modal_message'>js彈框自動消失案例</div>
                        <span id='num'></span>
                    </div>
                    <div class='modal-footer boxFooter' id='modal-footer'>
                        <button type='button' class='btn btn-default boxButton' data-dismiss='modal'>關閉</button>
                        <button type='button' class='btn btn-primary boxButton'>保存</button>
                    </div>
                </div>
            </div>
        </div>
        
        <script src="./js/jquery/jquery-1.11.2.js"></script>
        <script src="./js/bootstrap/js/bootstrap.min.js"></script>
        <script src="./js/jquery-ui/jquery-ui.min.js"></script>
        
        <script>
            var clearFlag = 0;
            var count = 3;//設置3秒后自動消失
            var showModal = function(){
                $("#my-modal-alert").toggle();//顯示模態框
                
                $("#my-modal-alert").draggable({//設置模態框可拖動(需要引入jquery-ui.min.js)
                    handle: ".modal-header"
                });
                
                clearFlag = self.setInterval("autoClose()",1000);//每過一秒調用一次autoClose方法
            }
            
            var autoClose = function(){
                if(count>0){
                    $("#num").html(count + "秒后窗口將自動關閉");
                    count--;
                }else if(count<=0){
                    window.clearInterval(clearFlag); 
                    $("#num").html("");
                    $("#my-modal-alert").fadeOut("slow");
                    count = 3;
                    $("#my-modal-alert").toggle();
                }
            }
        </script>
    </body>
</html>

注意:1、bootstrap依賴于jquery,引入bootstrap前需要引入jquery

二、Demo.css

/*彈框本身(大)*/ 
.my-modal-alert .boxBodyBig{
    width:496px;
    height: 418px;
}
/*彈框本身(小)*/ 
.my-modal-alert .boxBodySmall{
    width:412px;
    height: 418px;
}
/*彈框頭*/
.my-modal-alert .boxHeader{
    background-color: #f6f6f6;
    border-bottom: #e5e5e5 1px;
    height: 48px;
} 
/*彈框標題*/ 
.my-modal-alert .boxTitle{
    background-color: #f6f6f6;
    color:#333333;
    font-family:"SimHei";
    font-size: 16px;
}
/*彈框頭部分右側關閉按鈕*/
.my-modal-alert .boxClose{
    
}
.my-modal-alert .boxClose:hover{
    color: #ff7800;
}
/*彈框按鈕的父級元素塊*/
.my-modal-alert .boxFooter{
    margin: auto;
    text-align: center;
    padding:24px 15px 24px 15px;
    margin:0px 15px 0px 15px;
}
/*彈框按鈕*/
.my-modal-alert .boxButton{
    font-family:"SimHei";
    background-color:#ff7800;
    width: 70px;
    height: 30px;
    color:white;
    text-align:center;
    line-height: 1;
}

/*已下為選用*/
/*彈框主題label框*/
.my-modal-alert .boxLabel{
    width:80px;
    font-size: 14px; 
    font-family:'SimHei';
    color: #999999;
    
}
/*文本框*/
.my-modal-alert .boxInput{
    width:176px;
    font-size: 14px;
    color: #333333;
}
/*純文本*/
.my-modal-alert .boxText{
    color:#ff7800;
    font-family:'SimHei';
    font-size: 12px;
}
.my-modal-alert .boxTextarea{
    font-size: 12px;
}

.my-modal-alert .modal-body{
    width: 400px;
    height: 100px;
    text-align: center;
}
.my-modal-alert .modal_message{
    margin-top: 20px;
    
}

“JS怎么實現定時自動消失的彈出窗口”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

js
AI

平乐县| 昌都县| 上饶市| 乐业县| 三河市| 台中县| 东丽区| 璧山县| 桦南县| 会同县| 河东区| 华安县| 宜昌市| 安乡县| 松潘县| 郧西县| 永城市| 沾化县| 将乐县| 明水县| 天气| 富平县| 馆陶县| 茶陵县| 宜黄县| 桐城市| 涪陵区| 高要市| 阜康市| 盐源县| 沾化县| 嘉善县| 崇礼县| 天气| 定陶县| 巨鹿县| 罗田县| 吉木萨尔县| 中牟县| 东兰县| 盐津县|