diff --git a/css/style.css b/css/style.css index 6f8ba0a..de052fb 100644 --- a/css/style.css +++ b/css/style.css @@ -605,7 +605,8 @@ margin-bottom: 32px; } -.login-btn{ +.login-btn, +.register-btn{ width: calc(88% - 136px); height: 48px; margin: 25px 0 40px 136px; @@ -1292,11 +1293,11 @@ /* 提示框 */ .tips-box{ display: none; - min-width: 160px; - max-width: 240px; + min-width: 140px; + max-width: 180px; background-color: #fff; border-radius: 3px; - padding: 10px 10px; + padding: 10px 20px; text-align: center; position: fixed; top: 20%; @@ -1310,8 +1311,8 @@ } .tips-box>p{ font-size: 14px; - line-height: 1.8; - margin-top: 4px; + line-height: 1.6; + margin-top: 6px; opacity: .8; } diff --git a/js/my-site.js b/js/my-site.js index 95ec68a..2435cab 100644 --- a/js/my-site.js +++ b/js/my-site.js @@ -57,20 +57,30 @@ jQuery(function($){ autoplay:false, }) - // 弹框事件 + // 登录 if($('.login-btn').length > 0){ $('.login-btn').click(function() { - $('.nav-bg').css('display','block'); - $('.tips-box').css('display','block'); - setTimeout(function() { - $('.nav-bg').css('display','none'); - $('.tips-box').css('display','none'); - call(); - },1000) + openTips('登录成功,立即跳转到首页',1000); + }) + } + // 注册 + if($('.register-btn').length > 0){ + $('.register-btn').click(function() { + 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) + } diff --git a/login.html b/login.html index 735361e..ac6551a 100644 --- a/login.html +++ b/login.html @@ -102,7 +102,7 @@
提 示 -

密码位数不正确

+

diff --git a/register.html b/register.html index a7ada68..2c8851e 100644 --- a/register.html +++ b/register.html @@ -81,7 +81,7 @@ - +
我已阅读并同意相关服务条款和隐私政策
@@ -104,5 +104,11 @@
Copyright© xxxxxxxxx.com All rights reserved蜀ICP备11111111号-2技术支持:大向天成
+ + +
+ 提 示 +

注册成功,自动跳转到登录页

+