| | |
| | | > |
| | | </el-button> |
| | | <el-button class="cursor-pointer" link > |
| | | <el-tooltip v-if="isTalking" placement="top" content="停止生成"> |
| | | <div class="size-[36px] rounded-full flex-center border-2 border-solid border-black text-black" @click="emits('stopGenClick')"> |
| | | <el-tooltip placement="top" content="停止生成" v-if="isTalking"> |
| | | <div |
| | | class="size-[28px] stop-breathe rounded-full flex-center border-2 border-solid border-black text-black" |
| | | @click="emits('stopGenClick')" |
| | | > |
| | | <span class="ywifont ywicon-jieshu"></span> |
| | | </div> |
| | | </el-tooltip> |
| | |
| | | } |
| | | } |
| | | } |
| | | |
| | | .stop-breathe { |
| | | @keyframes breathe { |
| | | 0%, |
| | | 100% { |
| | | transform: scale(1); |
| | | } |
| | | 50% { |
| | | transform: scale(1.35); |
| | | } |
| | | } |
| | | animation: breathe 3s infinite ease-in-out; |
| | | } |
| | | </style> |