最新文章專題視頻專題問答1問答10問答100問答1000問答2000關(guān)鍵字專題1關(guān)鍵字專題50關(guān)鍵字專題500關(guān)鍵字專題1500TAG最新視頻文章視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專題關(guān)鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
當(dāng)前位置: 首頁 - 科技 - 知識百科 - 正文

js用類封裝pop彈窗組件實(shí)例分享

來源:懂視網(wǎng) 責(zé)編:小OO 時(shí)間:2020-11-27 20:04:39
文檔

js用類封裝pop彈窗組件實(shí)例分享

下面直接上代碼。html結(jié)構(gòu)。<。<;br/>;自動登錄跳轉(zhuǎn)中......<;/p>;<;/p>;<;/p>;<。--引入jquery-->;<;script type=";text/javascript";src=";http://image.37wan.cn/common/js/jquery-1.9.1.min.js";>;<;/script>;<;pop.js代碼。
推薦度:
導(dǎo)讀下面直接上代碼。html結(jié)構(gòu)。<。<;br/>;自動登錄跳轉(zhuǎn)中......<;/p>;<;/p>;<;/p>;<。--引入jquery-->;<;script type=";text/javascript";src=";http://image.37wan.cn/common/js/jquery-1.9.1.min.js";>;<;/script>;<;pop.js代碼。

下面的彈出框組件使用的是類來封裝的。一個(gè)彈窗組件通過new一個(gè)實(shí)例來生成。本文主要為大家詳細(xì)介紹了js用類封裝pop彈窗組件的方法,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下,希望能幫助到大家。

下面直接上代碼:

html結(jié)構(gòu):

<!DOCTYPE html>
<html>
<head lang="en">
 <meta charset="UTF-8">
 <title></title>
 <style>
 /*基本的樣式*/
 button{width: 1.6rem;height: 0.5rem;font-size: 0.3rem;line-height: 0.5rem;background: red;color: white;font-weight: bold}
 .hide{display: none;}
 .js-pop{
 width: 100%;
 height: 100%;
 z-index: 100;
 position: absolute;
 top:0;
 left: 0;
 font-size: 0.24rem;
 }
 .js-pop .mask{
 position: fixed;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background: #000;
 opacity: 0.2;
 }
 .js-pop .content{
 position: fixed;
 top: 50%;
 left: 50%;
 width: 5.80rem;
 height: 4.81rem;
 margin: -2.405rem 0 0 -2.9rem;
 background: url("pop-bg.png") no-repeat;
 background-size: contain;
 color: #262626;
 text-align: center;
 }
 .js-pop .content .close{
 position: absolute;
 top: .25rem;
 right: .08rem;
 width: .54rem;
 height: .48rem;
 z-index: 4;
 cursor:pointer;
 }
 .js-pop .content .prize-title {
 height: .39rem;
 min-width: 1.77rem;
 margin: .28rem auto;
 line-height: 0.39rem;
 color: white;
 text-align: left;
 text-indent: 1rem;
 }
 .js-pop .content .prize-content {
 color: #a40000;
 font-size: .24rem;
 margin:0 0.1rem 0 0.49rem;
 line-height: 0.4rem;
 width: 5.2rem;
 }
 </style>
</head>
<body>
<button id="bb">顯示彈窗</button>
<p class="js-pop js-prize-pop hide" id="popLogin">
 <p class="mask"></p>
 <p class="content">
 <p class="close"></p>
 <p class="prize-title">溫馨提示</p>
 <p class="prize-content" style="margin-top: 1rem">
 登錄后才能參與活動哦!
 <br/>
 自動登錄跳轉(zhuǎn)中......
 </p>
 </p>
</p>
<!--引入jquery-->
<script type="text/javascript" src="http://image.37wan.cn/common/js/jquery-1.9.1.min.js"></script>
<!--引入Pop組件-->
<script src="pop.js"></script>
<script>
// rem代碼
 var windowW = $(window).width();
 var ratio = windowW/640;
 $("html").css("fontSize",100*ratio+"px");
 $(window).on("resize",function(){
 var windowW = $(window).width();
 var ratio = windowW/640;
 $("html").css("fontSize",100*ratio+"px");
 });
//new一個(gè)Pop實(shí)例
 var popLogin=new Pop($("#popLogin"));
 $("#bb").on("click",function(){
 popLogin.open();
 });

</script>
</body>
</html>

pop.js代碼:

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

文檔

js用類封裝pop彈窗組件實(shí)例分享

下面直接上代碼。html結(jié)構(gòu)。<。<;br/>;自動登錄跳轉(zhuǎn)中......<;/p>;<;/p>;<;/p>;<。--引入jquery-->;<;script type=";text/javascript";src=";http://image.37wan.cn/common/js/jquery-1.9.1.min.js";>;<;/script>;<;pop.js代碼。
推薦度:
標(biāo)簽: 分享 pop js
  • 熱門焦點(diǎn)

最新推薦

猜你喜歡

熱門推薦

專題
Top