jquery實現(xiàn)彈窗(系統(tǒng)提示框)效果
更新時間:2021年10月15日 10:40:26 作者:酷jjs
這篇文章主要為大家詳細介紹了jquery實現(xiàn)彈窗系統(tǒng)提示框效果,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下
本文實例為大家分享了jquery實現(xiàn)系統(tǒng)提示框的具體代碼,供大家參考,具體內容如下
<!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 h3{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">
<h3>系統(tǒng)提示</h3>
<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插件jRumble實現(xiàn)網(wǎng)頁元素抖動
jRumble是jquery的插件,可以讓你選擇的元素抖動。 調用時只需一句代碼即可,有些抖動效果還挺可愛,可自定義的抖動效果,十分的炫酷,有需要的小伙伴可以參考下。2015-06-06
jQuery實現(xiàn)網(wǎng)頁抖動的菜單抖動效果
這篇文章主要介紹了jQuery實現(xiàn)網(wǎng)頁抖動的菜單抖動效果,鼠標滑過菜單項可見到菜單項的抖動效果,涉及jquery鼠標事件及頁面元素樣式動態(tài)操作的技巧,需要的朋友可以參考下2015-08-08
Jquery on方法綁定事件后執(zhí)行多次的解決方法
下面小編就為大家?guī)硪黄狫query on方法綁定事件后執(zhí)行多次的解決方法。小編覺得挺不錯的,現(xiàn)在就分享給大家,也給大家做個參考。一起跟隨小編過來看看吧2016-06-06

