1. 实现效果
GIF录屏文件太卡有点卡,实际是很丝滑的
2. 编写一个下雪效果组件 VabSnow.vue
- 在
src
下新建components
文件,创建VabSnow.vue
组件文件
<template>
<div class="content" :style="styleObj">
<div v-for="(item, index) in 200" :key="index" class="snow"></div>
</div>
</template>
<script>
export default {
name: 'VabSnow',
props: {
styleObj: {
type: Object,
default: () => {
return {
}
},