wip-FontAwesomeIcon shake

This commit is contained in:
Huang 2022-09-30 10:27:27 +08:00
parent 5afb1999a3
commit 6077bc21b7
3 changed files with 36 additions and 19 deletions

View File

@ -16,7 +16,7 @@
const wrapStyleObject = { const wrapStyleObject = {
color: props.color, color: props.color,
'font-size': `${props.size}rpx`, 'font-size': props.size ? `${props.size}rpx` : false,
'background-color': props.bgColor, 'background-color': props.bgColor,
'fa-border': props.border, 'fa-border': props.border,
}; };
@ -31,12 +31,13 @@
props.frameSize ? `fa-flip-${props.frameSize}` : '', props.frameSize ? `fa-flip-${props.frameSize}` : '',
props.sharp ? 'fass' : '', props.sharp ? 'fass' : '',
props.rotate ? 'fa-rotate-by' : '', props.rotate ? 'fa-rotate-by' : '',
props.reverse ? `fa-flip-${props.reverse}` : '', props.rotateFlip ? `fa-flip-${props.rotateFlip}` : '',
singleBeat ? `fa-beat` : '', singleBeat ? `fa-beat` : '',
singleFade ? `fa-fade` : '', singleFade ? `fa-fade` : '',
BeatFade ? `fa-beat-fade` : '', BeatFade ? `fa-beat-fade` : '',
props.bounce ? 'fa-bounce' : '', props.bounce ? 'fa-bounce' : '',
props.flip ? 'fa-flip' : '', props.flip ? 'fa-flip' : '',
props.shake ? 'fa-shake' : '',
]; ];
const iconStyleObject = Object.assign( const iconStyleObject = Object.assign(
{ {
@ -80,6 +81,7 @@
display: inline-block; display: inline-block;
.icon { .icon {
display: inline-block; display: inline-block;
color: inherit;
} }
} }
</style> </style>

View File

@ -39,6 +39,7 @@ export const FontAwesomeIconProps = {
*/ */
size: { size: {
type: Number, type: Number,
default: '',
}, },
/** /**
* icon color * icon color
@ -68,10 +69,10 @@ export const FontAwesomeIconProps = {
type: Number, type: Number,
default: 0, default: 0,
}, },
/** icon reverse /** icon rotateFlip
* @description * @description -
*/ */
reverse: { rotateFlip: {
type: String, type: String,
validator(value: string) { validator(value: string) {
// The value must match one of these strings // The value must match one of these strings
@ -140,17 +141,17 @@ export const FontAwesomeIconProps = {
rebound: '-0.125em', rebound: '-0.125em',
// 设置图标弹跳时跳到的最大高度 // 设置图标弹跳时跳到的最大高度
height: '-0.5em', height: '-0.5em',
// 设置图标开始反弹时的水平失真(“挤压”) // 设置图标开始反弹时的水平挤压
startScaleX: '1.1', startScaleX: '1.1',
// 将图标的水平失真(“挤压”)设置在跳转的顶部 // 设置图标开始反弹时的垂直挤压
startScaleY: '0.9', startScaleY: '0.9',
// 将图标的水平失真(“挤压”)设置在跳转的顶部 // 设置图标弹跳时的水平挤压
jumpScaleX: '0.9', jumpScaleX: '0.9',
// 将图标的垂直失真(“挤压”)设置在跳转的顶部 // 设置图标弹跳时的垂直挤压
jumpScaleY: '1.1', jumpScaleY: '1.1',
// 设置后着陆时图标的水平失真(“挤压”) // 设置图标弹跳后着陆时的水平挤压
landScaleX: '1.05', landScaleX: '1.05',
// 设置后着陆时图标的垂直失真(“挤压”) // 设置图标弹跳后着陆时的垂直挤压
landScaleY: '0.95', landScaleY: '0.95',
}; };
}, },
@ -171,15 +172,23 @@ export const FontAwesomeIconProps = {
type: Object, type: Object,
default: () => { default: () => {
return { return {
// 设置表示旋转轴的矢量的 x 坐标0~1 // 设置旋转轴的 x 坐标0~1
x: '0', x: '0',
// 设置矢量的 y 坐标,表示旋转轴0~1) // 设置旋转轴的 y 坐标0~1)
y: '1', y: '1',
// 设置矢量的 z 坐标,表示旋转轴0~1) // 设置旋转轴的 z 坐标0~1)
z: '0', z: '0',
// 设置翻转的旋转角度正角表示顺时针旋转,负角表示逆时针旋转。 // 设置翻转的旋转角度,正角表示顺时针旋转,负角表示逆时针旋转。
angle: '-180deg', angle: '-180deg',
}; };
}, },
}, },
/**
* icon shake
* @description
*/
shake: {
type: Boolean,
default: false,
},
}; };

View File

@ -33,16 +33,17 @@
<view>rotate-旋转角度</view> <view>rotate-旋转角度</view>
<view> <FontAwesomeIcon mode="duotone" name="house" rotate="63" />duotone 63</view> <view> <FontAwesomeIcon mode="duotone" name="house" rotate="63" />duotone 63</view>
<view> <FontAwesomeIcon mode="duotone" name="snowboarding" rotate="58" />duotone 58</view> <view> <FontAwesomeIcon mode="duotone" name="snowboarding" rotate="58" />duotone 58</view>
<view>reverse-对称翻转</view> <view>rotateFlip-旋转-翻转</view>
<view> <FontAwesomeIcon mode="duotone" name="snowboarding" />duotone 正常</view> <view> <FontAwesomeIcon mode="duotone" name="snowboarding" />duotone 正常</view>
<view> <view>
<FontAwesomeIcon mode="duotone" name="snowboarding" reverse="horizontal" />duotone 水平翻转 <FontAwesomeIcon mode="duotone" name="snowboarding" rotate-flip="horizontal" />
duotone 水平翻转
</view> </view>
<view> <view>
<FontAwesomeIcon mode="duotone" name="snowboarding" reverse="vertical" />duotone 垂直翻转 <FontAwesomeIcon mode="duotone" name="snowboarding" rotate-flip="vertical" />duotone 垂直翻转
</view> </view>
<view> <view>
<FontAwesomeIcon mode="duotone" name="snowboarding" reverse="both" />duotone 垂直水平翻转 <FontAwesomeIcon mode="duotone" name="snowboarding" rotate-flip="both" />duotone 垂直水平翻转
</view> </view>
<view>beat-缩放动画</view> <view>beat-缩放动画</view>
<FontAwesomeIcon name="circle-plus" beat /> <FontAwesomeIcon name="circle-plus" beat />
@ -87,6 +88,11 @@
}" }"
/> />
<FontAwesomeIcon name="money-check-dollar" flip duration="3" /> <FontAwesomeIcon name="money-check-dollar" flip duration="3" />
<view>shake-抖动动画</view>
<FontAwesomeIcon name="bell" shake />
<FontAwesomeIcon name="stopwatch" shake />
<FontAwesomeIcon name="bomb" shake />
</AppProvider> </AppProvider>
</template> </template>
<style lang="scss" scoped></style> <style lang="scss" scoped></style>