您好,登錄后才能下訂單哦!
這篇文章主要介紹了jquery如何實現彈窗效果,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
本文實例為大家分享了jquery實現系統提示框的具體代碼,供大家參考,具體內容如下
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <script src="js/jquery-1.11.1.js"></script> <title>彈窗效果</title> <style> *{ margin: 0;padding: 0;list-style: none} .mask{background-color:rgba(0,0,0,0.2); width:100%; height:100%;position:fixed;top:0;left:0;} .prompt_box{width:400px;height:200px;background:#ffffff;border-radius:6px; position:fixed;top:25%; left:50%; margin-left:-200px;overflow: hidden;} .prompt_box .prompt_title{height:40px;line-height:40px;padding-left:20px;border-bottom:2px solid #1a9ebf;background:#e6e6e6;position: relative;} .prompt_box .prompt_title h4{font-size:16px;color: #333333; margin-top:0;} .prompt_box .prompt_cancel{width:24px;height:24px;background: url("img/cancel.png") no-repeat;position: absolute;right:0;top:0;} .prompt_box .prompt_cont{position: relative;height:158px;} .prompt_box .prompt_cont .prompt_text{line-height:140px;padding-left:100px;} .prompt_box .prompt_cont .prompt_sure{position: absolute;right:20px;bottom:34px; width:50px;height: 26px;background:#1a9ebf;border-radius:5px;color:#ffffff; font-size: 14px;line-height:26px;text-align: center;} .hide{display:none;} .show{display:block;} </style> </head> <body> <input type="button" value="按鈕" id="btn"> <div class="mask hide"> <div class="prompt_box"> <div class="prompt_title"> <h4>系統提示</h4> <span class="prompt_cancel"></span> </div> <div class="prompt_cont"> <p class="prompt_text">輸入有誤,請重新輸入!</p> <span class="prompt_sure">確定</span> </div> </div> </div> <script> $(function () { (function () { //////////////////////////彈窗效果//////////////////////////////// $('#btn').click(function () { $('.prompt_text').text('輸入有誤,請重新輸入!'); $('.mask').removeClass('hide'); }) $('.prompt_sure,.prompt_cancel').click(function () { $('.mask').addClass('hide'); }) })(); }); </script> </body> </html>
效果圖顯示:
jquery是一個簡潔而快速的JavaScript庫,它具有獨特的鏈式語法和短小清晰的多功能接口、高效靈活的css選擇器,并且可對CSS選擇器進行擴展、擁有便捷的插件擴展機制和豐富的插件,是繼Prototype之后又一個優秀的JavaScript代碼庫,能夠用于簡化事件處理、HTML文檔遍歷、Ajax交互和動畫,以便快速開發網站。
感謝你能夠認真閱讀完這篇文章,希望小編分享的“jquery如何實現彈窗效果”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。