From 19bcf0b07c4df16babd472be67ba9bad13b71862 Mon Sep 17 00:00:00 2001 From: Huang <596417202@qq.com> Date: Fri, 30 Sep 2022 11:54:14 +0800 Subject: [PATCH] wip-FontAwesomeIcon spin --- src/components/FontAwesomeIcon/index.vue | 10 +++++ src/components/FontAwesomeIcon/props.ts | 51 ++++++++++++++++++++++ src/demo/example/fontAwesomeIcon/index.vue | 14 ++++++ 3 files changed, 75 insertions(+) diff --git a/src/components/FontAwesomeIcon/index.vue b/src/components/FontAwesomeIcon/index.vue index 44ff4f6..b8998b2 100644 --- a/src/components/FontAwesomeIcon/index.vue +++ b/src/components/FontAwesomeIcon/index.vue @@ -38,6 +38,9 @@ props.bounce ? 'fa-bounce' : '', props.flip ? 'fa-flip' : '', props.shake ? 'fa-shake' : '', + props.spin ? 'fa-spin' : '', + props.spinReverse ? 'fa-spin-reverse' : '', + props.spinPulse ? 'fa-spin-pulse' : '', ]; const iconStyleObject = Object.assign( { @@ -69,6 +72,13 @@ '--fa-flip-angle': props.flipConfig?.angle || '-180deg', } : {}, + props.spin + ? { + '--fa-animation-delay': props.spinDelay, + '--fa-animation-iteration-count': props.spinIterationCount, + '--fa-animation-timing': props.spinTiming, + } + : {}, );