JSDM

HTML

 
1
<div class="box">
2
  <i></i>
3
  <i></i>
4
</div>

CSS

x
 
1
  * {
2
        margin: 0;
3
        padding: 0;
4
        box-sizing: border-box;
5
      }
6
7
      .box {
8
        margin: 100px;
9
        position: relative;
10
        height: 200px;
11
      }
12
13
      .box i {
14
        position: absolute;
15
        background-color: rgba(28, 229, 129, 0.4);
16
        width: 50px;
17
        height: 100px;
18
        transform: skewY(25deg);
19
        bottom: 0;
20
        animation: spin 2s infinite linear;
21
      }
22
23
      .box i:nth-child(2) {
24
        transform: skewY(-25deg);
25
        left: 51px;
26
      }
27
28
      .box i:nth-child(2)::after {
29
        content: '';
30
        position: absolute;
31
        background-color: rgba(28, 229, 129, 0.4);
32
        width: 48px;
33
        height: 50px;
34
        transform: skew(47deg) rotate(90deg);
35
        top: -50px;
36
        right: 27px;
37
      }
38
39
      @keyframes spin {
40
        0% {
41
          height: 100px;
42
        }
43
44
        50% {
45
          height: 200px;
46
        }
47
48
        100% {
49
          height: 100px;
50
        }
51
52
      }
? ?
? ?
必须是有效的URL
+ 添加另一个资源

JS

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

文件管理 点击文件查看URL

图片

  1. 暂无文件

CSS

  1. 暂无文件

JavaScript

  1. 暂无文件

其他

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