前端样式完成
parent
010880afca
commit
5b6dc7f0c0
|
@ -605,7 +605,8 @@
|
||||||
margin-bottom: 32px;
|
margin-bottom: 32px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.login-btn{
|
.login-btn,
|
||||||
|
.register-btn{
|
||||||
width: calc(88% - 136px);
|
width: calc(88% - 136px);
|
||||||
height: 48px;
|
height: 48px;
|
||||||
margin: 25px 0 40px 136px;
|
margin: 25px 0 40px 136px;
|
||||||
|
@ -1292,11 +1293,11 @@
|
||||||
/* 提示框 */
|
/* 提示框 */
|
||||||
.tips-box{
|
.tips-box{
|
||||||
display: none;
|
display: none;
|
||||||
min-width: 160px;
|
min-width: 140px;
|
||||||
max-width: 240px;
|
max-width: 180px;
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
padding: 10px 10px;
|
padding: 10px 20px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
position: fixed;
|
position: fixed;
|
||||||
top: 20%;
|
top: 20%;
|
||||||
|
@ -1310,8 +1311,8 @@
|
||||||
}
|
}
|
||||||
.tips-box>p{
|
.tips-box>p{
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
line-height: 1.8;
|
line-height: 1.6;
|
||||||
margin-top: 4px;
|
margin-top: 6px;
|
||||||
opacity: .8;
|
opacity: .8;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -57,20 +57,30 @@ jQuery(function($){
|
||||||
autoplay:false,
|
autoplay:false,
|
||||||
})
|
})
|
||||||
|
|
||||||
// 弹框事件
|
// 登录
|
||||||
if($('.login-btn').length > 0){
|
if($('.login-btn').length > 0){
|
||||||
$('.login-btn').click(function() {
|
$('.login-btn').click(function() {
|
||||||
$('.nav-bg').css('display','block');
|
openTips('登录成功,立即跳转到首页',1000);
|
||||||
$('.tips-box').css('display','block');
|
})
|
||||||
setTimeout(function() {
|
}
|
||||||
$('.nav-bg').css('display','none');
|
// 注册
|
||||||
$('.tips-box').css('display','none');
|
if($('.register-btn').length > 0){
|
||||||
call();
|
$('.register-btn').click(function() {
|
||||||
},1000)
|
openTips('注册成功,立即跳转到登录页',1000);
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
// 记住密码
|
// 提示弹窗
|
||||||
|
function openTips(val,closeTime='1500'){
|
||||||
|
$('.nav-bg').css('display','block');
|
||||||
|
$('.tips-box').css('display','block');
|
||||||
|
$('.tips-box').find('p').text(val);
|
||||||
|
setTimeout(function() {
|
||||||
|
$('.nav-bg').css('display','none');
|
||||||
|
$('.tips-box').css('display','none');
|
||||||
|
$('.tips-box').find('p').text('');
|
||||||
|
},closeTime)
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -102,7 +102,7 @@
|
||||||
<!-- 提示框 -->
|
<!-- 提示框 -->
|
||||||
<div class="tips-box">
|
<div class="tips-box">
|
||||||
<span>提 示</span>
|
<span>提 示</span>
|
||||||
<p>密码位数不正确</p>
|
<p></p>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -81,7 +81,7 @@
|
||||||
<input type="txt" name="pwd" placeholder="">
|
<input type="txt" name="pwd" placeholder="">
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<button class="login-btn register-btn">立即注册</button>
|
<button class="register-btn">立即注册</button>
|
||||||
<div class="agree register-agree">
|
<div class="agree register-agree">
|
||||||
<span><em class="agreement"></em>我已阅读并同意相关服务条款和隐私政策<ins class="icon-arrow"></ins></span>
|
<span><em class="agreement"></em>我已阅读并同意相关服务条款和隐私政策<ins class="icon-arrow"></ins></span>
|
||||||
</div>
|
</div>
|
||||||
|
@ -104,5 +104,11 @@
|
||||||
<div class="foot-record">Copyright© xxxxxxxxx.com All rights reserved<a href="https://beian.miit.gov.cn">蜀ICP备11111111号-2</a>技术支持:<a href="">大向天成</a></div>
|
<div class="foot-record">Copyright© xxxxxxxxx.com All rights reserved<a href="https://beian.miit.gov.cn">蜀ICP备11111111号-2</a>技术支持:<a href="">大向天成</a></div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<!-- 提示框 -->
|
||||||
|
<div class="tips-box">
|
||||||
|
<span>提 示</span>
|
||||||
|
<p>注册成功,自动跳转到登录页</p>
|
||||||
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
Loading…
Reference in New Issue