From 9fea5bf2010bf1ce0bfa3e94295f8352b7024c95 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BA=8E=E8=82=96=E7=A3=8A?= <18851179580@163.com> Date: Tue, 14 Jan 2025 18:01:45 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8A=A8=E7=94=BB=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../common/custom-module/animation-config/index.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/common/custom-module/animation-config/index.vue b/src/components/common/custom-module/animation-config/index.vue index 774f78bf..fcd46fdf 100644 --- a/src/components/common/custom-module/animation-config/index.vue +++ b/src/components/common/custom-module/animation-config/index.vue @@ -18,7 +18,7 @@ // 动画类型 const animation_type = defineModel('type', { type: String, default: 'default' }); // 动画次数 -const animation_number = defineModel('number', { type: String, default: 'default' }); +const animation_number = defineModel('number', { type: String, default: 'infinite' }); // 动画类型选项 const animation_option = [ { name: '无', value: 'default' }, @@ -32,7 +32,7 @@ const animation_option = [ { name: '淡入淡出', value: 'fade-in-bck-alternate' }, { name: '文字铺开', value: 'tracking-in-expand' }, { name: '左侧弹跳', value: 'bounce-in-left' }, - { name: '右侧滑动', value: 'slide-in-left' }, + { name: '左侧滑动', value: 'slide-in-left' }, { name: '中心滑动', value: 'slide-in-fwd-center' }, { name: '心跳', value: 'heartbeat' }, { name: '脉动', value: 'pulsate-bck' },