绿满眶商城微信小程序-uniapp
zxl
2 天以前 b7ce92d35fde3704297163010c320e336a5dd681
pages/tabbar/index/home.vue
@@ -681,7 +681,6 @@
         this.hideActivityPopup()
      },
      replyClick(reply) {
         if (this.userId === reply.userId) {
            let that = this;
            uni.showModal({
@@ -2020,6 +2019,7 @@
   left: 20rpx;
   z-index: 1000
}
.fixed-float-window {
  position: fixed;
  right: 20rpx;
@@ -2029,7 +2029,8 @@
  height: 150rpx;
  border-radius: 50%;
  box-shadow: 0 10rpx 16rpx rgba(110, 103, 103, 0.4);
  background-color: rgba(50, 48, 48, 0.7); /* 加深主体背景,增强对比 */
   background-color: rgba(50, 48, 48, 0.7);
   /* 加深主体背景,增强对比 */
  display: flex;
  flex-direction: column;
  align-items: center;
@@ -2072,16 +2073,24 @@
/* 旋转动画 */
@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
   0% {
      transform: rotate(0deg);
   }
   100% {
      transform: rotate(360deg);
   }
}
/* 呼吸扩散动画 */
@keyframes pulse {
  0%, 100% {
   0%,
   100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.6;
@@ -2089,9 +2098,11 @@
}
.float-text {
  color: rgba(255, 215, 0, 0.95); /* 文字更亮 */
   color: rgba(255, 215, 0, 0.95);
   /* 文字更亮 */
  font-size: 26rpx;
  font-weight: bold; /* 加粗文字 */
   font-weight: bold;
   /* 加粗文字 */
  margin-top: 8rpx;
}