1234567891011121314151617181920type="button"登录class="popOutBg"class="popOut"title="关闭" x欢迎登录本网站width="120"用户名:type="text" class="inp" placeholder="请输入用户名" value="admin"密码:type="password" class="inp" placeholder="请输入密码"colspan="2" type="button" class="login" value="登录"
1234567891011121314151617181920212223242526272829303132333435363738394041* {margin:0;padding:0;}button,input {outline:none;}button,.login {width:120px;height:42px;background:#f40;color:#fff;border:none;border-radius:6px;display:block;margin:20px auto;cursor:pointer;}.popOutBg {width:100%;height:100%;position:fixed;left:0;top:0;background:rgba(0,0,0,.6);display:none;}.popOut {position:fixed;width:600px;height:300px;top:50%;left:50%;margin-top:-150px;margin-left:-300px;background:#fff;border-radius:8px;overflow:hidden;display:none;}.popOut > span {
123456789101112131415161718192021222324function $(param) {if (arguments[1] == true) {return document.querySelectorAll(param);} else {return document.querySelector(param);}}function ani() {$(".popOut").className = "popOut ani";}$("button").onclick = function() {$(".popOut").style.display = "block";ani();$(".popOutBg").style.display = "block";};$(".popOut > span").onclick = function() {$(".popOut").style.display = "none";$(".popOutBg").style.display = "none";};$(".popOutBg").onclick = function() {$(".popOut").style.display = "none";$(".popOutBg").style.display = "none";};
更新时间:2021-07-26 02:12:00