帮我写一个 uni-app自定义加载动画组件
时间: 2023-12-24 12:02:53 浏览: 141
自定义加载动画
当然可以!以下是一个简单的Uni-app自定义加载动画组件的示例代码:
在你的组件文件(例如`LoadingAnimation.vue`)中,可以使用以下代码:
```vue
<template>
<div class="loading-animation">
<div class="animation"></div>
</div>
</template>
<script>
export default {
name: 'LoadingAnimation',
props: {
color: {
type: String,
default: '#000000' // 默认颜色为黑色
},
size: {
type: String,
default: '30px' // 默认尺寸为30像素
}
}
}
</script>
<style scoped>
.loading-animation {
display: flex;
justify-content: center;
align-items: center;
}
.animation {
width: {{ size }};
height: {{ size }};
border-radius: 50%;
border: 4px solid {{ color }};
border-top-color: transparent;
animation: spin 1s linear infinite;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
</style>
```
使用该组件时,只需在需要显示加载动画的地方添加以下代码:
```vue
<template>
<div>
<!-- 其他内容 -->
<LoadingAnimation color="#ff0000" size="50px" />
<!-- 其他内容 -->
</div>
</template>
<script>
import LoadingAnimation from '@/components/LoadingAnimation'
export default {
components: {
LoadingAnimation
}
}
</script>
```
这样,你就可以在需要显示加载动画的地方使用`<LoadingAnimation>`组件,并通过`color`和`size`属性自定义加载动画的颜色和尺寸了。
阅读全文