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

@@ -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 {