Browse Source

add clicked effect

huaisian 2 năm trước cách đây
mục cha
commit
025f098840
4 tập tin đã thay đổi với 29 bổ sung7 xóa
  1. 11 0
      css/style.css
  2. 0 0
      css/style.css.map
  3. 9 0
      css/style.scss
  4. 9 7
      js/index_match.js

+ 11 - 0
css/style.css

@@ -1853,6 +1853,17 @@ body {
   transition: all .3s;
 }
 
+.sec-match .btn-match.clicked {
+  color: #B2B2B2;
+  border: 1px solid #B2B2B2;
+}
+
+.sec-match .btn-match.clicked:hover {
+  color: #B2B2B2;
+  border: 1px solid #B2B2B2;
+  background-color: transparent;
+}
+
 .sec-match .btn-match:hover {
   background-color: #EE7800;
   color: white;

Những thai đổi đã bị hủy bỏ vì nó quá lớn
+ 0 - 0
css/style.css.map


+ 9 - 0
css/style.scss

@@ -1495,6 +1495,15 @@ body {
         border-radius: 10px;
         padding: .3rem .6rem;
         transition: all .3s;
+        &.clicked {
+            color: #B2B2B2;
+            border: 1px solid #B2B2B2;
+            &:hover {
+                color: #B2B2B2;
+                border: 1px solid #B2B2B2;
+                background-color: transparent;
+            }
+        }
         &:hover {
             background-color: #EE7800;
             color: white;

+ 9 - 7
js/index_match.js

@@ -102,11 +102,15 @@ function renderMatchMb(matchData) {
 }
   
 $(document).on("click", ".btn-match", function (event) {
-    Swal.fire({
-        icon: 'success',
-        text: '我們已收到您的訊息,將有幸福經紀人與您聯繫',
-        confirmButtonText: '關閉',
-    })
+    if(!$(this).hasClass('clicked')) {
+        Swal.fire({
+            icon: 'success',
+            text: '我們已收到您的訊息,將有幸福經紀人與您聯繫',
+            confirmButtonText: '關閉',
+        })
+    }
+    $(this).addClass('clicked');
+
 });
 
 
@@ -282,5 +286,3 @@ $('.close').click(function () {
     window.close();
 })
 
-
-console.log('hii');

Một số tệp đã không được hiển thị bởi vì quá nhiều tập tin thay đổi trong này khác