mirror of
https://gitee.com/h_mo/uniapp-vue3-vite-ts-template
synced 2025-04-05 19:41:44 +08:00
wip-FontAwesomeIcon spin
This commit is contained in:
parent
6077bc21b7
commit
19bcf0b07c
@ -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>
|
||||
|
@ -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',
|
||||
},
|
||||
};
|
||||
|
@ -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>
|
||||
|
Loading…
x
Reference in New Issue
Block a user