sass动效星空

一、安装所需依赖 

cnpm install node-sass -save-dev

cnpm install sass-loader -save-dev

cnpm install -g sass

*用npm下载node-sass会失败报需要python环境,直接用cnpm下载就可以成功了

<template>
    <div class="star-content">
        <div class="star1"></div>
        <div class="star2"></div>
        <div class="star3"></div>
    </div>
</template>
<style lang="scss" scoped>
$starColor: #fff;
@function getStarShadow($n) {
  $shadow: '#{random(100)}vw #{random(100)}vh #{$starColor}';
  @for $i from 2 through $n {
    $shadow: '#{$shadow},#{random(100)}vw #{random(100)}vh #{$starColor}';
  }
  @return unquote($shadow);
}

@keyframes starMove {
  100% {
    transform: translateY(-100vh);
  }
}

.star-content {
  width: 100vw;
  height: 100vh;
  background-color: #000;
}

@for $i from 1 through 3 {
  $shadNum: floor(500 / $i);
  $duration: floor(200 / $i);
  .star#{$i} {
    position: fixed;
    width: #{$i}px;
    height: #{$i}px;
    border-radius: 50%;
    left: 0;
    top: 0;
    box-shadow: getStarShadow($shadNum);
    animation: starMove #{$duration}s linear infinite;
    &::after {
      content: '';
      position: inherit;
      width: inherit;
      height: inherit;
      left: inherit;
      top: 100vh;
      border-radius: inherit;
      box-shadow: inherit;
    }
  }
}
</style>

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值