溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

css和js實(shí)現(xiàn)彈出登錄居中界面完整代碼

發(fā)布時(shí)間:2020-09-25 05:23:04 來源:腳本之家 閱讀:163 作者:mrr 欄目:web開發(fā)

我實(shí)現(xiàn)的這個(gè)和許多網(wǎng)站上的登錄彈出窗口差不多,大家舉一反三,先看我寫完后的結(jié)果。

css和js實(shí)現(xiàn)彈出登錄居中界面完整代碼

點(diǎn)擊創(chuàng)建相冊后

css和js實(shí)現(xiàn)彈出登錄居中界面完整代碼

會(huì)在這個(gè)屏幕的中間顯示創(chuàng)建相冊的表單,整個(gè)背景顏色變暗,點(diǎn)擊右上角的X會(huì)關(guān)閉這個(gè)表單。

html代碼

創(chuàng)建按鈕

<li id="create"><a href="#form" rel="external nofollow" ><span>創(chuàng)建相冊</span></a></li>

背景div和表單div

<div class="background"></div>

<div id="form">
  <div class="fh">
    <h2>創(chuàng)建相冊</h2>
    <a class="close"><img src="pics/close.png" /></a>
  </div>
  ...
</div>
css代碼
.background {
  display: none;
  position:fixed;
  top:0px;
  left:0px;
  width:100%;
  height:100%;
  background-color:#fff;
  background:-moz-radial-gradient(50% 50%, #fff, #000);/*gradient for firefox*/
  background:-webkit-radial-gradient(50% 50%, #fff, #000);/*new gradient for webkit */
  background:-webkit-gradient(radial, 0 50%, 0 50%, from(#fff), to(#000));/*the old grandient for webkit*/
  opacity:0.5;
  filter:Alpha(opacity=50);
}
#form {
  display: none;
  position:fixed;
  border: 1px solid #ccc;   
  background-color:white;
  top:30%;
  left:30%;
  width: auto;
  border-radius:15px;
  -moz-border-radius:15px;
  box-shadow:0 5px 27px rgba(0,0,0,0.3);
  -webkit-box-shadow:0 5px 27px rgba(0,0,0,0.3);
  -moz-box-shadow:0 5px 27px rgba(0,0,0,0.3);
}

JavaScript代碼

function showForm() {
  var create = document.getElementById("create");
  var bg = document.getElementsByClassName("background")[0];
  var form = document.getElementById("form");
  var links = document.getElementsByClassName("close");
  for(var i=0;i<links.length;i++) {
    links[i].onclick = function() {
    form.style.display = "none";
    bg.style.display = "none";
    }
  }
  create.onclick = function() {
    form.style.display = "block";
    bg.style.display = "block";
  }

主要原理是改變背景div和表單div的display屬性,值為block時(shí)顯示,值為none時(shí)元素消失。而position:fixed; 是相對于當(dāng)前窗口的。

總結(jié)

以上所述是小編給大家介紹的css和js實(shí)現(xiàn)彈出登錄居中界面完整代碼,希望對大家有所幫助!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI