最新文章專題視頻專題問答1問答10問答100問答1000問答2000關(guān)鍵字專題1關(guān)鍵字專題50關(guān)鍵字專題500關(guān)鍵字專題1500TAG最新視頻文章推薦1 推薦3 推薦5 推薦7 推薦9 推薦11 推薦13 推薦15 推薦17 推薦19 推薦21 推薦23 推薦25 推薦27 推薦29 推薦31 推薦33 推薦35 推薦37視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專題關(guān)鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
問答文章1 問答文章501 問答文章1001 問答文章1501 問答文章2001 問答文章2501 問答文章3001 問答文章3501 問答文章4001 問答文章4501 問答文章5001 問答文章5501 問答文章6001 問答文章6501 問答文章7001 問答文章7501 問答文章8001 問答文章8501 問答文章9001 問答文章9501
當(dāng)前位置: 首頁 - 科技 - 知識百科 - 正文

jQuery實(shí)現(xiàn)的兩種簡單彈窗效果示例

來源:懂視網(wǎng) 責(zé)編:小采 時(shí)間:2020-11-27 22:16:33
文檔

jQuery實(shí)現(xiàn)的兩種簡單彈窗效果示例

jQuery實(shí)現(xiàn)的兩種簡單彈窗效果示例:本文實(shí)例講述了jQuery實(shí)現(xiàn)的兩種簡單彈窗效果。分享給大家供大家參考,具體如下: 這里利用jquery實(shí)現(xiàn)兩種彈窗效果: 1. 淡入彈窗效果: <!DOCTYPE html> <html> <head> <meta charset=utf-8> &
推薦度:
導(dǎo)讀jQuery實(shí)現(xiàn)的兩種簡單彈窗效果示例:本文實(shí)例講述了jQuery實(shí)現(xiàn)的兩種簡單彈窗效果。分享給大家供大家參考,具體如下: 這里利用jquery實(shí)現(xiàn)兩種彈窗效果: 1. 淡入彈窗效果: <!DOCTYPE html> <html> <head> <meta charset=utf-8> &

本文實(shí)例講述了jQuery實(shí)現(xiàn)的兩種簡單彈窗效果。分享給大家供大家參考,具體如下:

這里利用jquery實(shí)現(xiàn)兩種彈窗效果:

1. 淡入彈窗效果:

<!DOCTYPE html>
<html>
 <head>
 <meta charset="utf-8">
 <title>www.gxlcms.com jQuery彈窗</title>
 <style>
 *{padding: 0;margin: 0;}
 .box{width: 100%;height: 100%;}
 .main{width: 100%;height: 100%;background-color: rgba(0,0,0,0.8);display: none;position: fixed;z-index: 1;}
 .mainbox{width: 800px;height: 100%;margin: 0 auto;background-color: rgba(255,255,255,0.8);padding: 20px;}
 .kkk{width: 100%;height: 1200px;background-color: red;}
 .close{color: red;cursor: pointer;}
 </style>
 <script src="http://libs.baidu.com/jquery/1.10.2/jquery.min.js"></script>
 <script>
 $(function(){
 $(".btn").click(function(){
 $(".main").fadeIn();
 });
 $(".close").click(function(){
 $(".main").fadeOut();
 });
 });
 </script>
 </head>
 <body>
 <div class="main">
 <div class="mainbox">
 <div class="close">點(diǎn)擊關(guān)閉</div>
 </div>
 </div>
 <div class="box">
 <div class="kkk">
 <input class="btn" type="button" value="點(diǎn)擊淡入彈窗" />
 </div>
 </div>
 </body>
</html>

運(yùn)行效果:

2. 滑動(dòng)彈窗效果:

<!DOCTYPE html>
<html>
 <head>
 <meta charset="utf-8">
 <title>www.gxlcms.com jQuery彈窗</title>
 <style>
 *{padding: 0;margin: 0;}
 .box{width: 100%;height: 100%;}
 .main{width: 100%;height: 100%;background-color: rgba(0,0,0,0.8);display: none;position: fixed;z-index: 1;}
 .mainbox{width: 800px;height: 100%;margin: 0 auto;background-color: rgba(255,255,255,0.8);padding: 20px;display: none;}
 .kkk{width: 100%;height: 1200px;background-color: red;}
 .close{color: red;cursor: pointer;}
 </style>
 <script src="http://libs.baidu.com/jquery/1.10.2/jquery.min.js"></script>
 <script>
 $(function(){
 $(".btn").click(function(){
 $(".main").fadeIn();
 $(".mainbox").delay(500).slideDown();
 });
 $(".close").click(function(){
 $(".main").fadeOut();
 });
 });
 </script>
 </head>
 <body>
 <div class="main">
 <div class="mainbox">
 <div class="close">點(diǎn)擊關(guān)閉</div>
 </div>
 </div>
 <div class="box">
 <div class="kkk">
 <input class="btn" type="button" value="點(diǎn)擊淡入彈窗" />
 </div>
 </div>
 </body>
</html>

運(yùn)行效果:

更多關(guān)于jQuery相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《jQuery窗口操作技巧總結(jié)》、《jQuery擴(kuò)展技巧總結(jié)》、《jQuery常用插件及用法總結(jié)》、《jQuery表格(table)操作技巧匯總》、《jQuery常見經(jīng)典特效匯總》及《jquery選擇器用法總結(jié)》

希望本文所述對大家jQuery程序設(shè)計(jì)有所幫助。

聲明:本網(wǎng)頁內(nèi)容旨在傳播知識,若有侵權(quán)等問題請及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文檔

jQuery實(shí)現(xiàn)的兩種簡單彈窗效果示例

jQuery實(shí)現(xiàn)的兩種簡單彈窗效果示例:本文實(shí)例講述了jQuery實(shí)現(xiàn)的兩種簡單彈窗效果。分享給大家供大家參考,具體如下: 這里利用jquery實(shí)現(xiàn)兩種彈窗效果: 1. 淡入彈窗效果: <!DOCTYPE html> <html> <head> <meta charset=utf-8> &
推薦度:
標(biāo)簽: 簡單 彈出 效果
  • 熱門焦點(diǎn)

最新推薦

猜你喜歡

熱門推薦

專題
Top