
需要要实现上图的星空效果
1.星空背景子组件
<template>
<div class="stars">
<div class="star" v-for="(item, index) in starsCount" :key="index" ref="star"></div>
</div>
</template>
<script>
export default {
name: 'StarBackground',
props: {
},
data() {
return {
starsCount: 1200,
distance: 800
}
},
mounted() {
this.initStars()
},
methods: {
initStars()

最低0.47元/天 解锁文章
4896

被折叠的 条评论
为什么被折叠?



