@blink-the-ui/animations
v0.0.1-alpha.22
Published
Blink UI 动画组件库,提供多种动画效果。
Readme
@blink-the-ui/animations
Blink UI 动画组件库,提供多种动画效果。
安装
npm install @blink-the-ui/animations使用
<template>
<Fade>
<div v-if="show">淡入淡出动画</div>
</Fade>
<HoverFloatUp>
<Button>悬停浮动动画</Button>
</HoverFloatUp>
</template>
<script setup>
import { ref } from 'vue';
import { Fade, HoverFloatUp } from '@blink-the-ui/animations';
import { Button } from '@blink-the-ui/components';
const show = ref(true);
</script>可用动画
Fade- 淡入淡出动画HoverFloatUp- 悬停时向上浮动Ripple- 波纹效果Bubble- 冒泡动画Stacked- 堆叠动画
