From dda3f3407d6ce7067a2cb30ec20bf1ee0b423dd6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9E=AB=E8=B0=B7=E5=89=91=E4=BB=99?= Date: Mon, 24 Jun 2019 17:24:30 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E6=8E=A7=E5=88=B6=E6=A1=86?= =?UTF-8?q?=E7=9A=84=E6=A8=A1=E7=B3=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- script.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/script.js b/script.js index bbd04f7d..1ab6c577 100644 --- a/script.js +++ b/script.js @@ -112,6 +112,8 @@ function initialize() return ln?(ln.length>0):false; }).join(" | "); }); + //控制框 + var controlBox = document.querySelector(".control-box"); //标题和介绍文本框 var txtTitle = document.querySelector(".title-box .title"); @@ -142,10 +144,12 @@ function initialize() editBox.show = function(){ editBox.classList.remove("display-none"); formationBox.classList.add("blur-bg"); + controlBox.classList.add("blur-bg"); } editBox.hide = function(){ editBox.classList.add("display-none"); formationBox.classList.remove("blur-bg"); + controlBox.classList.remove("blur-bg"); } var settingBox = editBox.querySelector(".setting-box")