您好,登錄后才能下訂單哦!
這篇文章主要介紹了怎么用jquery+CSS實現懸浮登錄框遮罩的相關知識,內容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇怎么用jquery+CSS實現懸浮登錄框遮罩文章都會有所收獲,下面我們一起來看看吧。
先上效果圖,陰影部分無法點擊
HTML代碼
<div style="display: none" class="shadow" id="shadow"></div>
<div style="display: none" id="login-box" class="login-box">
<div class="close-btn">
<img src="./img/close.jpg" width="30" height="30" id="close-login-btn" alt="">
</div>
<div class="input-item">
<label for="username">用戶名</label>
<input type="text" name="username" id="username" placeholder="用戶名/郵箱/手機號碼">
</div>
<div class="input-item">
<label for="password">密 碼</label>
<input type="password" name="password" id="password" placeholder="密碼">
</div>
<div class="input-item">
<label for="check-code">驗證碼</label>
<input type="text" name="check-code" id="check-code" placeholder="驗證碼">
<!--<button type="button" id="get-check-code"> </button>-->
<div id="req_pic_code" >
<img src="" id="get-check-code" alt="">
</div>
<!--<img src="" id="get-check-code" alt="">-->
</div>
<div class="input-item">
<button type="button" id="login-btn">登 錄</button>
</div>
<div class="input-item">
<img src="./pic/QQ.jpg" width="50" height="50" alt="">
<img src="./pic/微信.jpg" width="50" height="50" alt="">
<img src="./pic/微博.jpg" width="50" height="50" alt="">
</div>
<div class="input-item">
<!--登錄即代表你同意 《用戶協議》, 《隱私政策》和 中移動認證服務協議-->
<span>登錄即代表你同意</span>
<a href="#">《用戶協議》</a>
<span>,</span>
<a href="#">《隱私政策》</a>
<span>和</span>
<a href="#">中移動認證服務協議</a>
</div>
</div>
css代碼
/* 半透明的遮罩層 */
.shadow {
background: #000;
filter: alpha(opacity=70); /* IE的透明度 */
opacity: 0.5; /* 透明度 */
display: none;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 965; /* 此處的圖層要大于頁面 */
}
.login-box {
text-align: center;
width: 500px;
height: 350px;
border-radius: 10px;
/*border: 3px solid gainsboro;*/
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
background: #ffe3e1;
-webkit-box-shadow: #666 0 0 6px;
-moz-box-shadow: #666 0 0 6px;
box-shadow: #fff8e7 0 0 6px 6px;
z-index: 996; /* 此處的圖層要大于遮罩圖層 */
}
jQuery代碼
//登錄,點擊登錄顯示登錄框
$("#login-link").click(function () {
$("#login-box").show();
$("#shadow").show();
});
//關閉登錄框,點擊關閉按鈕關閉
$("#close-login-btn").click(function () {
$("#login-box").hide();
$("#shadow").hide();
});
關于“怎么用jquery+CSS實現懸浮登錄框遮罩”這篇文章的內容就介紹到這里,感謝各位的閱讀!相信大家對“怎么用jquery+CSS實現懸浮登錄框遮罩”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。