JSDM

HTML

 
1
<div class="background-wrap single-square" data-phase="1">  
2
    <?xml version="1.0" encoding="utf-8" standalone="no"?>
3
    <svg  version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="100%" height="100%">
4
5
        <defs>
6
            <pattern id="boxCombo" x="0" y="0" width="100" height="100"
7
            patternUnits="userSpaceOnUse">
8
                <rect x="32.3" y="57.3" transform="matrix(-0.7071 -0.7071 0.7071 -0.7071 32.3208 163.3887)" class="box1" width="35.4" height="35.4" />
9
                <rect x="57.3" y="32.3" transform="matrix(-0.7071 -0.7071 0.7071 -0.7071 92.6779 138.39)" class="box2" width="35.4" height="35.4" />
10
                <rect x="7.3" y="32.3" transform="matrix(-0.7071 -0.7071 0.7071 -0.7071 7.322 103.0315)" class="box3" width="35.4" height="35.4" />
11
                <rect x="32.3" y="7.3" transform="matrix(-0.7071 -0.7071 0.7071 -0.7071 67.6793 78.0327)" class="box4" width="35.4" height="35.4" />
12
            </pattern>
13
            <pattern id="squares"
14
            x="0" y="0" width="100" height="100"
15
            patternUnits="userSpaceOnUse" >
16
                <g class="group1" transform="translate(0 0)">
17
                    <rect x="0" y="0" width="100" height="100" style="fill: url(#boxCombo);" /> 
18
                </g>
19
                <g class="group2" transform="translate(50 -50)">
20
                    <rect x="0" y="0" width="100" height="100" style="fill: url(#boxCombo);" /> 
21
                </g>
22
                <g class="group3" transform="translate(50 50)">
23
                    <rect x="0" y="0" width="100" height="100" style="fill: url(#boxCombo);" /> 
24
                </g>
25
                <g class="group4" transform="translate(-50 -50)">
26
                    <rect x="0" y="0" width="100" height="100" style="fill: url(#boxCombo);" /> 
27
                </g>
28
                <g class="group5" transform="translate(-50 50)">
29
                    <rect x="0" y="0" width="100" height="100" style="fill: url(#boxCombo);" /> 
30
                </g>
31
            </pattern>
32
    
33
        </defs>
34
35
    <rect class="patternWrap" x="0" y="0" width="100%" height="100%" style="stroke: #000000; fill: url(#squares);" /> 
36
</svg>
37
</div>
!

CSS

xxxxxxxxxx
65
 
1
@color1 : #0084bd; // Darker Blue
2
@color2 : #ff3004; // Red
3
@color3 : #03bbf1; // Cyan
4
@color4 : #a68f49; // Gold
5
@color5 : #669edc; // Med Blue
6
@color6 : #BADA55;
7
@transition : all 1s ease;
8
9
html, body {height: 100%}
10
.squares(@color){
11
  .box1{fill: @color;}
12
  .box2{fill: lighten(@color, 20%)}
13
  .box3{fill: spin(darken(@color, 10%), 10deg)}
14
  .box4{fill: spin(lighten(@color, 10%), 10deg)}
15
}
16
.background-wrap {
17
  width: 100%;
18
  height: 100%;
19
  transition: @transition;
20
  rect {
21
    transition: @transition;
22
    transform-origin: center center;
23
  }
24
  &[data-phase="1"]{
25
    background-color: @color1;
26
    .squares(@color1);
27
  }
28
  &[data-phase="2"]{
29
    background-color: @color2;
30
    .squares(@color2);
31
  }
32
  &[data-phase="3"]{
33
    background-color: @color3;
34
    .squares(@color3);
35
  }
36
  &[data-phase="4"]{
37
    background-color: @color4;
38
    .squares(@color4);
39
  }
40
  &[data-phase="5"]{
41
    background-color: @color5;
42
    .squares(@color5);
43
  }
44
  &[data-phase="6"]{
45
    background-color: @color6;
46
    .squares(@color6);
47
  }
48
}
49
.single-square {
50
  rect[class^="box"]{
51
    transition: @transition;
52
    transform-origin: center center;
53
    transform-style: preserve-3d;
54
  }
55
  &[data-phase="2"], &[data-phase="4"], &[data-phase="6"] {
56
    rect[class^="box"]{
57
      transform: rotateZ(135deg);
58
    }
59
  } 
60
  &[data-phase="1"], &[data-phase="3"], &[data-phase="5"] {
61
    rect[class^="box"]{
62
      transform: rotateZ(45deg);
63
    }
64
  }
65
}
!
? ?
? ?
必须是有效的URL
+ 添加另一个资源

JS

xxxxxxxxxx
11
 
1
var container = $(".background-wrap"),
2
    c = 2,
3
    max = 6;
4
    
5
setInterval(function(){advancePhase();}, 2000);
6
    
7
function advancePhase(){
8
  if(c > max){ c = 1;}
9
    container.attr("data-phase", c);
10
    c++;
11
 }
!
必须是有效的URL
+ 添加另一个资源
Close

文件管理 点击文件查看URL

图片

  1. 暂无文件

CSS

  1. 暂无文件

JavaScript

  1. 暂无文件

其他

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