From 010880afcac2ea258a610644d6558069068e95d6 Mon Sep 17 00:00:00 2001
From: Lee-1203 <342694918@qq.com>
Date: Thu, 12 May 2022 11:29:08 +0800
Subject: [PATCH] =?UTF-8?q?=E5=89=8D=E7=AB=AF=E6=A0=B7=E5=BC=8F=E5=AE=8C?=
=?UTF-8?q?=E6=88=90?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
about.html | 1 +
agreement.html | 1 +
css/base.css | 1 +
css/style.css | 31 ++++++++++++++++
feedback.html | 1 +
js/my-site.js | 20 +++++++----
login.html | 8 ++++-
operation.html | 97 ++++++++++++++++++++++++++++++++++++++++++++++++++
8 files changed, 152 insertions(+), 8 deletions(-)
create mode 100644 operation.html
diff --git a/about.html b/about.html
index 5ecfc47..18aaabe 100644
--- a/about.html
+++ b/about.html
@@ -65,6 +65,7 @@
合作协议
关于我们
意见反馈
+ 操作指南
关于我们
diff --git a/agreement.html b/agreement.html
index e2b6876..17eda5b 100644
--- a/agreement.html
+++ b/agreement.html
@@ -65,6 +65,7 @@
合作协议
关于我们
意见反馈
+
操作指南
合作协议
diff --git a/css/base.css b/css/base.css
index caa0090..1fc5a8e 100644
--- a/css/base.css
+++ b/css/base.css
@@ -69,6 +69,7 @@ a{
button,
input,
textarea {
+ font-family: auto;
background: none;
border: 0;
outline: none; /* 取消轮廓 */
diff --git a/css/style.css b/css/style.css
index 9ccf1a5..6f8ba0a 100644
--- a/css/style.css
+++ b/css/style.css
@@ -1289,6 +1289,32 @@
margin: 0 13px;
}
+/* 提示框 */
+.tips-box{
+ display: none;
+ min-width: 160px;
+ max-width: 240px;
+ background-color: #fff;
+ border-radius: 3px;
+ padding: 10px 10px;
+ text-align: center;
+ position: fixed;
+ top: 20%;
+ left: 50%;
+ transform: translate(-50%,-50%);
+ z-index: 999;
+}
+.tips-box>span{
+ display: block;
+ font-size: 17px;
+}
+.tips-box>p{
+ font-size: 14px;
+ line-height: 1.8;
+ margin-top: 4px;
+ opacity: .8;
+}
+
/* 响应式布局 */
@media screen and (max-width:1280px) {
@@ -1846,6 +1872,11 @@
display: inline-block;
margin-left: 0;
}
+
+ /* 提示框 */
+ .tips-box{
+ top: 50%;
+ }
}
@media screen and (max-width:414px) {
diff --git a/feedback.html b/feedback.html
index 9a9f901..490c5df 100644
--- a/feedback.html
+++ b/feedback.html
@@ -65,6 +65,7 @@
合作协议
关于我们
意见反馈
+
操作指南
意见反馈
diff --git a/js/my-site.js b/js/my-site.js
index 7d78469..95ec68a 100644
--- a/js/my-site.js
+++ b/js/my-site.js
@@ -57,16 +57,22 @@ 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)
+ })
+ }
+ // 记住密码
-
- // if(screen.width <= 768){
-
- // }else{
-
- // }
-
// 手机导航按钮
$('.head .head-btn').click(function() {
diff --git a/login.html b/login.html
index 4653715..735361e 100644
--- a/login.html
+++ b/login.html
@@ -75,7 +75,7 @@
@@ -98,5 +98,11 @@
+
+
+