Showing
3 changed files
with
11 additions
and
4 deletions
| ... | @@ -179,4 +179,11 @@ body { | ... | @@ -179,4 +179,11 @@ body { |
| 179 | color: #F56400 !important; | 179 | color: #F56400 !important; |
| 180 | cursor: pointer; | 180 | cursor: pointer; |
| 181 | } | 181 | } |
| 182 | + | ||
| 183 | +.no-select { | ||
| 184 | + user-select: none; /* 标准属性 */ | ||
| 185 | + -webkit-user-select: none; /* Safari 和 Chrome */ | ||
| 186 | + -moz-user-select: none; /* Firefox */ | ||
| 187 | + -ms-user-select: none; /* 旧版 IE */ | ||
| 188 | +} | ||
| 182 | </style> | 189 | </style> | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Date: 2024-09-29 10:31:01 | 2 | * @Date: 2024-09-29 10:31:01 |
| 3 | * @LastEditors: hookehuyr hookehuyr@gmail.com | 3 | * @LastEditors: hookehuyr hookehuyr@gmail.com |
| 4 | - * @LastEditTime: 2024-11-04 16:35:33 | 4 | + * @LastEditTime: 2024-11-05 09:43:08 |
| 5 | * @FilePath: /hager/src/components/hagerLoadMore.vue | 5 | * @FilePath: /hager/src/components/hagerLoadMore.vue |
| 6 | * @Description: 文件描述 | 6 | * @Description: 文件描述 |
| 7 | --> | 7 | --> |
| 8 | <template> | 8 | <template> |
| 9 | <div class="hager-load-more"> | 9 | <div class="hager-load-more"> |
| 10 | - <div class="get-more"> | 10 | + <div class="get-more no-select"> |
| 11 | <div class="btn">加载更多</div> | 11 | <div class="btn">加载更多</div> |
| 12 | </div> | 12 | </div> |
| 13 | </div> | 13 | </div> | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Date: 2024-09-29 10:31:01 | 2 | * @Date: 2024-09-29 10:31:01 |
| 3 | * @LastEditors: hookehuyr hookehuyr@gmail.com | 3 | * @LastEditors: hookehuyr hookehuyr@gmail.com |
| 4 | - * @LastEditTime: 2024-11-04 16:34:21 | 4 | + * @LastEditTime: 2024-11-05 09:42:21 |
| 5 | * @FilePath: /hager/src/components/hagerMore.vue | 5 | * @FilePath: /hager/src/components/hagerMore.vue |
| 6 | * @Description: 文件描述 | 6 | * @Description: 文件描述 |
| 7 | --> | 7 | --> |
| 8 | <template> | 8 | <template> |
| 9 | - <div class="hager-more"> | 9 | + <div class="hager-more no-select"> |
| 10 | <span style="font-size: 0.9rem;">MORE</span> | 10 | <span style="font-size: 0.9rem;">MORE</span> |
| 11 | </div> | 11 | </div> |
| 12 | </template> | 12 | </template> | ... | ... |
-
Please register or login to post a comment