JSDM

HTML

8
1
.snow-container
2
  .snow.foreground
3
  .snow.foreground.layered
4
  .snow.middleground
5
  .snow.middleground.layered
6
  .snow.background
7
  .snow.background.layered
8
!

CSS

xxxxxxxxxx
47
 
1
.snow-container
2
  position: absolute
3
  height: 500px
4
  width: 100%
5
  max-width: 100%
6
  top: 0
7
  overflow: hidden
8
  z-index: 2
9
  pointer-events: none
10
  background-color: black
11
12
.snow
13
  $foreground-speed: 15s
14
  $middleground-speed: 20s
15
  $background-speed: 25s
16
  display: block
17
  position: absolute
18
  z-index: 2
19
  top: 0
20
  right: 0
21
  bottom: 0
22
  left: 0
23
  pointer-events: none
24
  transform: translate3d(0,-100%,0)
25
  animation: snow linear infinite
26
  &.foreground
27
    background-image: url('https://dl6rt3mwcjzxg.cloudfront.net/assets/snow/snow-large-075d267ecbc42e3564c8ed43516dd557.png')
28
    animation-duration: $foreground-speed
29
    &.layered
30
      animation-delay: $foreground-speed/2
31
  &.middleground
32
    background-image: image-url('https://dl6rt3mwcjzxg.cloudfront.net/assets/snow/snow-medium-0b8a5e0732315b68e1f54185be7a1ad9.png')
33
    animation-duration: $middleground-speed
34
    &.layered
35
      animation-delay: $middleground-speed/2
36
  &.background
37
    background-image: image-url('https://dl6rt3mwcjzxg.cloudfront.net/assets/snow/snow-small-1ecd03b1fce08c24e064ff8c0a72c519.png')
38
    animation-duration: $background-speed
39
    &.layered
40
      animation-delay: $background-speed/2
41
42
@keyframes snow
43
  0%
44
    transform: translate3d(0,-100%,0)
45
  100%
46
    transform: translate3d(5%,100%,0)
47
!
? ?
? ?
必须是有效的URL
+ 添加另一个资源

JS

1
 
1
!
必须是有效的URL
+ 添加另一个资源
Close

文件管理 点击文件查看URL

图片

  1. 暂无文件

CSS

  1. 暂无文件

JavaScript

  1. 暂无文件

其他

  1. 暂无文件
拖动文件到上面的区域或者:
加载中 ..................