diff --git a/root/detail/userShare.vue b/root/detail/userShare.vue
index 93791a1..ea47160 100644
--- a/root/detail/userShare.vue
+++ b/root/detail/userShare.vue
@@ -29,7 +29,9 @@
-
+
@@ -348,8 +350,8 @@ export default {
// 只有在滚动到顶部且向下拉动时才执行缩放
if (scrollTop <= 0) {
// 根据移动距离计算缩放值,使效果更自然
- this.backgroundScale = Math.min(moveDistance * 0.05, 10); // 限制最大缩放值
- this.mtScroll = Math.min(moveDistance * 0.05, 10);
+ this.backgroundScale = Math.min(moveDistance * 0.2, 300); // 限制最大缩放值
+ this.mtScroll = Math.min(moveDistance * 0.2, 300);
}
}
}).exec();