wip-FontAwesomeIcon spin

This commit is contained in:
Huang 2022-09-30 11:54:14 +08:00
parent 6077bc21b7
commit 19bcf0b07c
3 changed files with 75 additions and 0 deletions

View File

@ -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,
}
: {},
);
</script>
<template>

View File

@ -191,4 +191,55 @@ export const FontAwesomeIconProps = {
type: Boolean,
default: false,
},
/**
* icon spin
* @description
*/
spin: {
type: [Boolean, String],
default: false,
},
/**
* icon spinReverse
* @description
*/
spinReverse: {
type: Boolean,
default: false,
},
/**
* icon spinPulse
* @description 8
*/
spinPulse: {
type: Boolean,
default: false,
},
/**
* icon spinDelay
* @description
* @link https://developer.mozilla.org/en-US/docs/Web/CSS/animation-direction
*/
spinDelay: {
type: String,
default: '0s',
},
/**
* icon spinIterationCount
* @description
*/
spinIterationCount: {
type: [String, Number],
default: 'infinite',
},
/**
* icon spinTiming
* @description
* @example linear(线), ease-in,ease-out,ease-in-out,step-start,step-end, steps(4, jump-start),cubic-bezier(0.1, -0.6, 0.2, 0);
* @link https://developer.mozilla.org/en-US/docs/Web/CSS/animation-timing-functionhttps://developer.mozilla.org/en-US/docs/Web/CSS/animation-timing-function
*/
spinTiming: {
type: String,
default: 'linear',
},
};

View File

@ -93,6 +93,20 @@
<FontAwesomeIcon name="bell" shake />
<FontAwesomeIcon name="stopwatch" shake />
<FontAwesomeIcon name="bomb" shake />
<view>spin-旋转动画</view>
<FontAwesomeIcon name="sync" spin duration="2" />
<FontAwesomeIcon name="circle-notch" spin duration="1.5" />
<FontAwesomeIcon name="cog" spin duration="2" />
<FontAwesomeIcon name="cog" spin spin-reverse duration="15" />
<FontAwesomeIcon name="spinner" spin spin-pulse spinDelay="5s" duration="2" />
<FontAwesomeIcon
name="spinner"
spin
spin-pulse
spin-reverse
spinIterationCount="3"
duration="2"
/>
</AppProvider>
</template>
<style lang="scss" scoped></style>