Skip to content

Commit

Permalink
我爱动画
Browse files Browse the repository at this point in the history
💄 现在消息有进入动画了
  • Loading branch information
Stapxs committed Nov 18, 2024
1 parent 166a3be commit fde8fee
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "stapxs-qq-lite",
"version": "2.9.3",
"version": "2.9.4",
"private": false,
"author": "Stapx Steve [林槐]",
"description": "一个兼容 OneBot 的非官方网页版 QQ 客户端,使用 Vue 重制的全新版本。",
Expand Down
16 changes: 13 additions & 3 deletions src/pages/Chat.vue
Original file line number Diff line number Diff line change
Expand Up @@ -1901,13 +1901,23 @@ export default defineComponent({
</script>

<style scoped>
/* 消息移除动画 */
/* 消息动画 */
.msglist-move {
transition: all .5s;
transition: all .3s;
}

.msglist-enter-active {
transition: all .4s;
}
.msglist-leave-active {
display: none;
transition: all .2s;
}
.msglist-enter-from {
transform: translateX(-20px);
opacity: 0;
}
.msglist-leave-to {
opacity: 0;
}

/* 更多功能面板动画 */
Expand Down

0 comments on commit fde8fee

Please sign in to comment.