From 6f0f3034d857e8dd534a4d072be430dfc3d0b9e0 Mon Sep 17 00:00:00 2001 From: ZHAOTONGHUA <2066753415@qq.com> Date: Thu, 21 Nov 2019 10:40:18 +0800 Subject: [PATCH] =?UTF-8?q?=E6=A8=A1=E6=80=81=E6=A1=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/views/common/index.php | 4 +- frontend/web/assets/css/model.css | 96 ------------------------------ frontend/web/assets/css/pop.css | 96 ++++++++++++++++++++++++++++++ frontend/web/assets/css/popUps.css | 0 frontend/web/assets/js/model.js | 37 ------------ frontend/web/assets/js/pop.js | 37 ++++++++++++ frontend/web/assets/js/popUps.js | 0 7 files changed, 135 insertions(+), 135 deletions(-) create mode 100644 frontend/web/assets/css/pop.css delete mode 100644 frontend/web/assets/css/popUps.css create mode 100644 frontend/web/assets/js/pop.js delete mode 100644 frontend/web/assets/js/popUps.js diff --git a/frontend/views/common/index.php b/frontend/views/common/index.php index d7f2d49..aeb8459 100644 --- a/frontend/views/common/index.php +++ b/frontend/views/common/index.php @@ -13,7 +13,7 @@ - +
@@ -170,7 +170,7 @@ - + diff --git a/frontend/web/assets/css/model.css b/frontend/web/assets/css/model.css index 4d1c9e2..e69de29 100644 --- a/frontend/web/assets/css/model.css +++ b/frontend/web/assets/css/model.css @@ -1,96 +0,0 @@ -.model_wrap{ - width: 100%; - height: 100vh; - background-color: #000; - opacity: 0.5; - position: fixed; - top: 0; - display:none; - z-index:2001; -} -.unchoose{ - display: none; -} -.model-bg{ - width: 560px; - position: absolute; - top: 30%; - left: 60%; - color:#fff; - margin-left: -600px; - z-index:2002 ; -} -.content{ - font-size:20px; -} -.jump{ - cursor: pointer; - position:absolute; - width:80px; - font-size:16px; - color:coral; - padding: 10px 20px; - border-radius: 40px; - top:22%; - left:53%; - z-index: 2002; - text-align: center; - border: 2px solid coral; - transition: background-color .3s -} -.jump:hover{ - background-color: coral; - color:#fff; -} -.Previous{ - cursor: pointer; - width:100px; - text-align: center; - font-size:16px; - color:#1ecd97; - padding: 10px 20px; - border-radius: 40px; - margin-top: 20px; - border: 2px solid #1ecd97; - transition: background-color .3s -} -.Previous:hover{ - background-color: #1ecd97; - color:#fff; -} -.nextPage{ - cursor: pointer; - width: 100px; - font-size:16px; - color:#1ecd97; - padding: 10px 20px; - border-radius: 40px; - text-align: center; - margin-top:-46px; - margin-left:150px; - border: 2px solid #1ecd97; - transition: background-color .3s -} -.nextPage:hover{ - background-color: #1ecd97; - color:#fff; -} -.point1{ - width: 525px; - height:174px; - background:url("../img/prompt.png") no-repeat center/cover; - position:absolute; - left:-548px; - top:-110px; -} -.point2{ - width: 529px; - height:170px; - background:url("../img/prompt3.png") no-repeat center/cover; - position:absolute; - left:-548px; - top:17px; -} -.boo{ - border:2px solid #fff; -} \ No newline at end of file diff --git a/frontend/web/assets/css/pop.css b/frontend/web/assets/css/pop.css new file mode 100644 index 0000000..4d1c9e2 --- /dev/null +++ b/frontend/web/assets/css/pop.css @@ -0,0 +1,96 @@ +.model_wrap{ + width: 100%; + height: 100vh; + background-color: #000; + opacity: 0.5; + position: fixed; + top: 0; + display:none; + z-index:2001; +} +.unchoose{ + display: none; +} +.model-bg{ + width: 560px; + position: absolute; + top: 30%; + left: 60%; + color:#fff; + margin-left: -600px; + z-index:2002 ; +} +.content{ + font-size:20px; +} +.jump{ + cursor: pointer; + position:absolute; + width:80px; + font-size:16px; + color:coral; + padding: 10px 20px; + border-radius: 40px; + top:22%; + left:53%; + z-index: 2002; + text-align: center; + border: 2px solid coral; + transition: background-color .3s +} +.jump:hover{ + background-color: coral; + color:#fff; +} +.Previous{ + cursor: pointer; + width:100px; + text-align: center; + font-size:16px; + color:#1ecd97; + padding: 10px 20px; + border-radius: 40px; + margin-top: 20px; + border: 2px solid #1ecd97; + transition: background-color .3s +} +.Previous:hover{ + background-color: #1ecd97; + color:#fff; +} +.nextPage{ + cursor: pointer; + width: 100px; + font-size:16px; + color:#1ecd97; + padding: 10px 20px; + border-radius: 40px; + text-align: center; + margin-top:-46px; + margin-left:150px; + border: 2px solid #1ecd97; + transition: background-color .3s +} +.nextPage:hover{ + background-color: #1ecd97; + color:#fff; +} +.point1{ + width: 525px; + height:174px; + background:url("../img/prompt.png") no-repeat center/cover; + position:absolute; + left:-548px; + top:-110px; +} +.point2{ + width: 529px; + height:170px; + background:url("../img/prompt3.png") no-repeat center/cover; + position:absolute; + left:-548px; + top:17px; +} +.boo{ + border:2px solid #fff; +} \ No newline at end of file diff --git a/frontend/web/assets/css/popUps.css b/frontend/web/assets/css/popUps.css deleted file mode 100644 index e69de29..0000000 diff --git a/frontend/web/assets/js/model.js b/frontend/web/assets/js/model.js index 501a4b2..e69de29 100644 --- a/frontend/web/assets/js/model.js +++ b/frontend/web/assets/js/model.js @@ -1,37 +0,0 @@ -$(function(){ - var arr=[1,3,5,6,7,8,9]; - $(".prompt").click(function(){ - $(".model_wrap").show(); - $(".model-bg").eq(0).removeClass("unchoose"); - $('.jump').removeClass('unchoose'); - - $('#side-menu .av').eq(0).click().addClass('boo'); - }); - - - - $(".model-bg").each(function (i) { - var _that=$(this); - _that.find(".nextPage").click(function () { - console.log(i); - _that.addClass("unchoose"); - $(".model-bg").eq(i+1).removeClass("unchoose"); - $('#side-menu .av').eq(arr[i]).addClass('boo'); - }); - _that.find(".Previous").click(function () { - _that.addClass("unchoose"); - $(".model-bg").eq(i-1).removeClass("unchoose"); - }); - }); - - $(".perfection").click(function () { - $(".jump").addClass('unchoose'); - $(".model_wrap").hide(); - }); - - $(".jump").click(function () { - $(this).addClass('unchoose'); - $(".model_wrap").hide(); - $(".model-bg").addClass("unchoose"); - }); -}); \ No newline at end of file diff --git a/frontend/web/assets/js/pop.js b/frontend/web/assets/js/pop.js new file mode 100644 index 0000000..a2cd1b7 --- /dev/null +++ b/frontend/web/assets/js/pop.js @@ -0,0 +1,37 @@ +$(function(){ + var arr=[1,3,5,6,7,8,9]; + $(".prompt").click(function(){ + $(".model_wrap").show(); + $(".model-bg").eq(0).removeClass("unchoose"); + $('.jump').removeClass('unchoose'); + + $('#side-menu .av').eq(0).click().addClass('boo'); + }); + + + + $(".model-bg").each(function (i) { + var _that=$(this); + _that.find(".nextPage").click(function () { + console.log(i); + _that.addClass("unchoose"); + $(".model-bg").eq(i+1).removeClass("unchoose"); + $('#side-menu .av').eq(arr[i]).addClass('boo'); + }); + _that.find(".Previous").click(function () { + _that.addClass("unchoose"); + $(".model-bg").eq(i-1).removeClass("unchoose"); + }); + }); + + $(".perfection").click(function () { + $(".jump").addClass('unchoose'); + $(".model_wrap").hide(); + }); + + $(".jump").click(function () { + $(this).addClass('unchoose'); + $(".model_wrap").hide(); + $(".model-bg").addClass("unchoose"); + }); +}); \ No newline at end of file diff --git a/frontend/web/assets/js/popUps.js b/frontend/web/assets/js/popUps.js deleted file mode 100644 index e69de29..0000000