Browse Source

修改登录的头像和增加更新版本的详情显示

outaozhen 6 years ago
parent
commit
0a8f7e5536
4 changed files with 21 additions and 2 deletions
  1. 8 0
      css/global.css
  2. BIN
      images/headimg.png
  3. 8 2
      js/global.js
  4. 5 0
      software-index.html

+ 8 - 0
css/global.css

@@ -668,4 +668,12 @@ body{
 .form-group span.text-danger{
   position:absolute;
   top:40px;
+}
+.text-big{
+  margin-top: -10px;
+  font-size: 26px;
+}
+.new-function{
+  padding:15px 0;
+  display:none;
 }

BIN
images/headimg.png


+ 8 - 2
js/global.js

@@ -38,6 +38,12 @@ $(document).ready(function(){
 		  $(".software-left-bottomV1").hide();
 		  $(".software-left-bottomV2").show();
 		}
-  })
+  });
+  $(".open-new").click(function(){
+  	$(this).next().slideToggle("slow");
+  });
 
- });
+ });
+$("body").on('click','[data-stopPropagation]',function (e) {
+  e.stopPropagation();
+});

File diff suppressed because it is too large
+ 5 - 0
software-index.html