Parcourir la source

前端样式更改

jace il y a 6 ans
Parent
commit
e2157ba618
1 fichiers modifiés avec 13 ajouts et 0 suppressions
  1. 13 0
      normand/frontend/frontend/web/static/fxm/js/public.js

+ 13 - 0
normand/frontend/frontend/web/static/fxm/js/public.js

@@ -84,7 +84,20 @@ $(function () {
   $('.iphone-download').click(function () {
     $('#mobile-download').fadeIn();
   });
+
   $('#closeButton').click(function () {
     $('#mobile-download').fadeOut();
   });
+
+
+   // 安卓的下载按钮弹框
+   $('.android-download').click(function () {
+     console.log(11111);
+     console.log($('#mobile1-download'));
+    $('#mobile1-download').fadeIn();
+  });
+  $('#closeButton1').click(function () {
+    $('#mobile1-download').fadeOut();
+  });
+
 });