From 5afb1999a3757a24f032faa27450ff6c46f672d0 Mon Sep 17 00:00:00 2001
From: h_mo <596417202@qq.com>
Date: Thu, 29 Sep 2022 23:43:38 +0800
Subject: [PATCH] wip: FontAwesomeIcon
---
src/components/FontAwesomeIcon/index.vue | 57 +++++++++++++-----
src/components/FontAwesomeIcon/props.ts | 70 ++++++++++++++++++++--
src/demo/example/fontAwesomeIcon/index.vue | 45 +++++++++++---
3 files changed, 147 insertions(+), 25 deletions(-)
diff --git a/src/components/FontAwesomeIcon/index.vue b/src/components/FontAwesomeIcon/index.vue
index eeca57a..f392fc7 100644
--- a/src/components/FontAwesomeIcon/index.vue
+++ b/src/components/FontAwesomeIcon/index.vue
@@ -11,7 +11,6 @@
*/
import { FontAwesomeIconProps } from '@/components/FontAwesomeIcon/props';
import { computed } from 'vue';
- import { isObject } from 'lodash-es';
const props = defineProps(FontAwesomeIconProps);
@@ -22,24 +21,54 @@
'fa-border': props.border,
};
+ const singleBeat = props.beat && !props.fade;
+ const singleFade = !props.beat && props.fade;
+ const BeatFade = props.beat && props.fade;
+
const iconClassObject = [
- 'fa-' + props.mode,
- 'fa-' + props.name,
+ `fa-${props.mode}`,
+ `fa-${props.name}`,
props.frameSize ? `fa-flip-${props.frameSize}` : '',
props.sharp ? 'fass' : '',
props.rotate ? 'fa-rotate-by' : '',
- props.flip ? `fa-flip-${props.flip}` : '',
- props.beat ? `fa-beat` : '',
- props.fade ? `fa-fade` : '',
- props.beat && props.fade ? `fa-beat-fade` : '',
+ props.reverse ? `fa-flip-${props.reverse}` : '',
+ singleBeat ? `fa-beat` : '',
+ singleFade ? `fa-fade` : '',
+ BeatFade ? `fa-beat-fade` : '',
+ props.bounce ? 'fa-bounce' : '',
+ props.flip ? 'fa-flip' : '',
];
-
- const iconStyleObject = {
- '--fa-rotate-angle': `${props.rotate}deg`,
- '--fa-animation-duration': `${props.duration}s`,
- '--fa-beat-scale': `${props.scale}`,
- '--fa-beat-opacity': `${props.opacity}`,
- };
+ const iconStyleObject = Object.assign(
+ {
+ '--fa-animation-duration': `${props.duration}s`,
+ },
+ props.rotate ? { '--fa-rotate-angle': `${props.rotate}deg` } : {},
+ singleBeat ? { '--fa-beat-scale': `${props.scale}` } : {},
+ singleFade ? { '--fa-fade-opacity': `${props.opacity}` } : {},
+ BeatFade
+ ? { '--fa-beat-fade-scale': `${props.scale}`, '--fa-beat-fade-opacity': `${props.opacity}` }
+ : {},
+ props.bounce
+ ? {
+ '--fa-bounce-rebound': props.bounceConfig?.rebound || '-0.125em',
+ '--fa-bounce-height': props.bounceConfig?.height || '-0.5em',
+ '--fa-bounce-start-scale-x': props.bounceConfig?.startScaleX || '1.1',
+ '--fa-bounce-start-scale-y': props.bounceConfig?.startScaleY || '0.9',
+ '--fa-bounce-jump-scale-x': props.bounceConfig?.jumpScaleX || '0.9',
+ '--fa-bounce-jump-scale-y': props.bounceConfig?.jumpScaleY || '1.1',
+ '--fa-bounce-land-scale-x': props.bounceConfig?.landScaleX || '1.05',
+ '--fa-bounce-land-scale-y': props.bounceConfig?.landScaleY || '0.95',
+ }
+ : {},
+ props.flip
+ ? {
+ '--fa-flip-x': props.flipConfig?.x || '0',
+ '--fa-flip-y': props.flipConfig?.y || '1',
+ '--fa-flip-z': props.flipConfig?.z || '0',
+ '--fa-flip-angle': props.flipConfig?.angle || '-180deg',
+ }
+ : {},
+ );
diff --git a/src/components/FontAwesomeIcon/props.ts b/src/components/FontAwesomeIcon/props.ts
index 8e98978..5a4a70b 100644
--- a/src/components/FontAwesomeIcon/props.ts
+++ b/src/components/FontAwesomeIcon/props.ts
@@ -68,10 +68,10 @@ export const FontAwesomeIconProps = {
type: Number,
default: 0,
},
- /** icon flip
- * @description 翻转
+ /** icon reverse
+ * @description 对称翻转
*/
- flip: {
+ reverse: {
type: String,
validator(value: string) {
// The value must match one of these strings
@@ -80,7 +80,7 @@ export const FontAwesomeIconProps = {
},
/**
* icon beat
- * @description 跳动动画
+ * @description 缩放动画
* @param duration Number 时间 s
* @param scale Number 比例
*/
@@ -120,4 +120,66 @@ export const FontAwesomeIconProps = {
type: Number,
default: 0.6,
},
+ /**
+ * icon bounce
+ * @description 弹跳动画
+ */
+ bounce: {
+ type: Boolean,
+ default: false,
+ },
+ /**
+ * icon bounceConfig
+ * @description 弹跳动画属性设置
+ */
+ bounceConfig: {
+ type: Object,
+ default: () => {
+ return {
+ // 设置图标在跳跃后着陆时的反弹量
+ rebound: '-0.125em',
+ // 设置图标弹跳时跳到的最大高度
+ height: '-0.5em',
+ // 设置图标开始反弹时的水平失真(“挤压”)
+ startScaleX: '1.1',
+ // 将图标的水平失真(“挤压”)设置在跳转的顶部
+ startScaleY: '0.9',
+ // 将图标的水平失真(“挤压”)设置在跳转的顶部
+ jumpScaleX: '0.9',
+ // 将图标的垂直失真(“挤压”)设置在跳转的顶部
+ jumpScaleY: '1.1',
+ // 设置跳跃后着陆时图标的水平失真(“挤压”)
+ landScaleX: '1.05',
+ // 设置跳跃后着陆时图标的垂直失真(“挤压”)
+ landScaleY: '0.95',
+ };
+ },
+ },
+ /**
+ * icon flip
+ * @description 翻转动画
+ */
+ flip: {
+ type: Boolean,
+ default: false,
+ },
+ /**
+ * icon flipConfig
+ * @description 翻转动画属性设置
+ */
+ flipConfig: {
+ type: Object,
+ default: () => {
+ return {
+ // 设置表示旋转轴的矢量的 x 坐标(0~1)
+ x: '0',
+ // 设置矢量的 y 坐标,表示旋转轴(0~1)
+ y: '1',
+ // 设置矢量的 z 坐标,表示旋转轴(0~1)
+ z: '0',
+ // 设置翻转的旋转角度。正角表示顺时针旋转,负角表示逆时针旋转。
+ angle: '-180deg',
+ };
+ },
+ },
};
diff --git a/src/demo/example/fontAwesomeIcon/index.vue b/src/demo/example/fontAwesomeIcon/index.vue
index 14ee1c7..4690613 100644
--- a/src/demo/example/fontAwesomeIcon/index.vue
+++ b/src/demo/example/fontAwesomeIcon/index.vue
@@ -33,29 +33,60 @@
rotate-旋转角度
duotone 63
duotone 58
- flip-翻转
+ reverse-对称翻转
duotone 正常
- duotone 水平翻转
+ duotone 水平翻转
- duotone 垂直翻转
+ duotone 垂直翻转
- duotone 垂直水平翻转
+ duotone 垂直水平翻转
- beat-跳动动画
+ beat-缩放动画
duration-动画持续时间
- scale-动画比例
+ scale-缩放比例
fade-淡入淡出动画
opacity-透明度值
-
+ beat+fade-跳动+淡入淡出动画
+
+ bounce-弹跳动画
+
+
+
+
+ flip-翻转动画
+
+
+
+
+