Sfoglia il codice sorgente

文档页背景logo

zhuliang 7 anni fa
parent
commit
edc47d5694

BIN
.gitignore.swp


+ 1 - 1
web/index.html

@@ -4,4 +4,4 @@
       "server": window.location.protocol +'//'+ window.location.host + window.location.pathname+ '../server/index.php?s=',
       //"lang" :'en'
       "lang" :'zh-cn'
-  }</script><link href=./static/css/app.4d8a720a3b791b0c3f7d86d74f257795.css rel=stylesheet></head><body><div id=app></div><script type=text/javascript src=./static/js/manifest.3ad1d5771e9b13dbdad2.js></script><script type=text/javascript src=./static/js/vendor.c40e244d08e2558b4f27.js></script><script type=text/javascript src=./static/js/app.5fe66dd83efa0fa5075e.js></script></body></html>
+  }</script><link href=./static/css/app.0d9f254f7550402ec191ba3118d49ba0.css rel=stylesheet></head><body><div id=app></div><script type=text/javascript src=./static/js/manifest.3ad1d5771e9b13dbdad2.js></script><script type=text/javascript src=./static/js/vendor.c40e244d08e2558b4f27.js></script><script type=text/javascript src=./static/js/app.aa231c092dd7f3379d79.js></script></body></html>

File diff suppressed because it is too large
+ 1 - 0
web/static/css/app.0d9f254f7550402ec191ba3118d49ba0.css


File diff suppressed because it is too large
+ 0 - 1
web/static/css/app.4d8a720a3b791b0c3f7d86d74f257795.css


File diff suppressed because it is too large
+ 0 - 1
web/static/js/app.5fe66dd83efa0fa5075e.js


File diff suppressed because it is too large
+ 1 - 0
web/static/js/app.aa231c092dd7f3379d79.js


+ 1 - 2
web_src/src/components/item/show/show_regular_item/Index.vue

@@ -274,7 +274,7 @@
     font-size: 16px;
   }
   .doc_logo_bg{
-    position: absolute;
+    position: fixed;
     width: 400px;
     height:400px;
     left: calc(50% - 100px);
@@ -287,7 +287,6 @@
     -ms-filter: blur(5px);
     filter: blur(5px);
     opacity: 0.05;
-    z-index: -1;
   }
 
 </style>

+ 1 - 2
web_src/src/components/item/show/show_single_page_item/Index.vue

@@ -128,7 +128,7 @@
     font-size: 16px;
   }
   .doc_logo_bg{
-      position: absolute;
+      position: fixed;
       width: 400px;
       height:400px;
       left: calc(50% - 200px);
@@ -141,7 +141,6 @@
       -ms-filter: blur(5px);
       filter: blur(5px);
       opacity: 0.05;
-      z-index: -1;
   }
 </style>
 

+ 16 - 0
web_src/src/components/page/Index.vue

@@ -4,6 +4,7 @@
 
       <div id="header"></div>
       <div class="container doc-container" id="doc-container">
+         <div class="doc_logo_bg"></div>
          <div class="doc-title-box">
             <span id="doc-title-span" class="dn"></span>
             <h2 id="doc-title">{{page_title}}</h2>
@@ -91,6 +92,21 @@
     padding: 0px;
     font-size: 16px;
   }
+  .doc_logo_bg{
+    position: fixed;
+    width: 400px;
+    height:400px;
+    left: calc(50% - 200px);
+    top: calc(50% - 200px);
+    background: url("../../../static/logo/logo_large.png") no-repeat center;
+    background-size: cover;
+    -webkit-filter: blur(5px);
+    -moz-filter: blur(5px);
+    -o-filter: blur(5px);
+    -ms-filter: blur(5px);
+    filter: blur(5px);
+    opacity: 0.05;
+  }
 </style>