feat: 添加点赞动画效果及更新点赞图标

- 在details.css和details.less中添加点赞动画效果
- 更新Item.vue组件中的点赞图标为like-red-pitch.png
- 在index.html/index.vue中添加点赞动画组件Like
- 更新http.js中的测试session token
This commit is contained in:
DESKTOP-RQ919RC\Pc
2025-08-22 11:25:26 +08:00
parent 205252739c
commit e2182f9c79
93 changed files with 620 additions and 450 deletions

View File

@@ -1149,6 +1149,20 @@
.content .floor-area .floor-content .floor-left .item .icon.h8 {
height: 8px;
}
.content .floor-area .floor-content .floor-left .item .icon.pitch {
animation: liftAndReset 0.3s forwards;
}
@keyframes liftAndReset {
0% {
transform: scale(1);
}
50% {
transform: scale(1.2);
}
100% {
transform: scale(1);
}
}
.content .floor-area .floor-content .floor-left .item.operate-item {
position: relative;
display: flex;

View File

@@ -1382,6 +1382,22 @@
height: 8px;
}
margin-right: 5px;
&.pitch {
animation: liftAndReset 0.3s forwards;
}
@keyframes liftAndReset {
0% {
transform: scale(1);
}
50% {
transform: scale(1.2);
}
100% {
transform: scale(1);
}
}
}
&.operate-item {