JSDM

HTML

 
1
<div id="tilte">
2
  <h1>Fractal Trees Animated</h1>
3
</div>
4
<div id="container">
5
<a href="https://www.youtube.com/channel/UCF6F8LdCSWlRwQm_hfA2bcQ">
6
7
8
<span style="text-align:left;">
9
<h2>
10
<img style="width:50px;float:left;margin-right:10px; vertical-align:middle;" src="http://image.noelshack.com/fichiers/2015/16/1428965590-photo.png"/>Coding Math 
11
</h2><p style="margin-top:5px;" >Thanks to you :)</p>
12
13
</span>
14
15
</a>
16
17
</div>
18
<canvas id="canvas"></canvas>

CSS

xxxxxxxxxx
45
 
1
@import url("https://fonts.googleapis.com/css?family=Roboto:300,700");
2
3
4
body{
5
  background-image: url("http://image.noelshack.com/fichiers/2015/12/1427051641-geometry.png");
6
  position: relative;
7
font-family: arial;
8
9
  padding:0px;
10
  margin:0px;
11
  overflow:hidden;
12
  text-align:center;
13
}
14
15
16
#tilte{
17
  position:absolute;
18
  width:100%;
19
  text-align:center;
20
  top:50px;
21
  color: #333;
22
  font-size:20px;
23
}
24
25
26
canvas{
27
border:0px solid black;
28
}
29
 #container{
30
border:0px solid black;
31
  position: absolute;
32
  right:20px;
33
  bottom:20px;
34
  padding:20px;
35
}
36
h1,h2{
37
font-weight: 300;
38
margin:0;
39
}
40
a {
41
color:inherit;
42
text-decoration:none;
43
}
44
45
? ?
? ?
必须是有效的URL
+ 添加另一个资源

JS

xxxxxxxxxx
112
 
1
2
3
canvas = document.getElementById("canvas");
4
context = canvas.getContext("2d");
5
6
width = canvas.width = window.innerWidth;
7
height = canvas.height = window.innerHeight;
8
  var p0 = {
9
    x: width /2,
10
    y:height 
11
  
12
  },
13
  
14
   p1 = {
15
    x: width /2,
16
    y:50
17
  
18
  },
19
  branchAngleA = Math.PI / 5,
20
  branchAngleB = Math.PI / 5,
21
  trunkRatio = randomRange(0.37,0.4);
22
  truckchiant = 0.45;
23
    colors = [
24
      '#f44336', '#e91e63', '#9c27b0', '#673ab7', '#3f51b5',
25
      '#2196f3', '#03a9f4', '#00bcd4', '#009688', '#4CAF50',
26
      '#8BC34A', '#CDDC39', '#FFEB3B', '#FFC107', '#FF9800',
27
      '#FF5722', '#795548'
28
    ];
29
  
30
finalcolor = colors[Math.floor(Math.random() * colors.length)];
31
32
  function tree(p0,p1, limit){
33
    var dx = p1.x - p0.x,
34
      dy = p1.y - p0.y,
35
      dist = Math.sqrt(dx * dx + dy * dy),
36
      angle = Math.atan2(dy,dx),
37
      branchLength = dist * (1- trunkRatio),
38
      pA = {
39
        x:p0.x + dx * trunkRatio,
40
        y:p0.y + dy * trunkRatio
41
      },
42
      pB = {
43
        x:pA.x + Math.cos(angle + branchAngleA) * branchLength,
44
        y:pA.y + Math.sin(angle + branchAngleA) * branchLength,
45
      },
46
      pC = {
47
        x:pA.x + Math.cos(angle - branchAngleB) * branchLength,
48
        y:pA.y + Math.sin(angle - branchAngleB) * branchLength,
49
      };
50
      
51
    context.beginPath();
52
    context.moveTo(p0.x, p0.y);
53
    context.lineTo(pA.x, pA.y);
54
    context.stroke();
55
    
56
    if(limit > 0){
57
      tree(pA, pC, limit -1);
58
      tree(pA, pB, limit -1);
59
    }
60
    else{
61
      context.beginPath();
62
      context.moveTo(pB.x, pB.y);
63
      context.lineTo(pA.x, pA.y);
64
      context.lineTo(pC.x, pC.y);
65
    context.strokeStyle="grey";
66
      context.lineWidth = 2;
67
      context.lineCap = 'round';
68
      
69
      context.stroke();
70
      context.closePath();
71
72
      context.beginPath();
73
      context.arc(pB.x,pB.y,10, 0, Math.PI * 2);
74
    context.fillStyle=finalcolor;
75
      context.fill();
76
      context.closePath();
77
      
78
      context.beginPath();
79
      context.arc(pC.x,pC.y,10, 0, Math.PI * 2);
80
      context.fill();
81
      context.closePath();
82
83
      
84
    }   angle += 0.3;
85
86
    branchAngleA = 1 + Math.cos(truckchiant) * 0.35;
87
    branchAngleB = 1 + Math.sin(truckchiant) * 0.1;
88
    
89
    //branchAngleB += randomRange(-0.02,0.02); 
90
    truckchiant += 0.2;
91
  
92
  }
93
94
95
function update(){
96
  context.clearRect(0,0,width,height);
97
  
98
    tree(p0,p1,5);
99
100
    requestAnimationFrame(update);
101
}
102
update();
103
104
105
function randomRange(min, max){
106
  return min + Math.random() * (max - min );
107
}
108
109
function randomInt(min, max){
110
  return Math.floor(min + Math.random()* (max - min + 1));
111
}
112
必须是有效的URL
+ 添加另一个资源
Close

文件管理 点击文件查看URL

图片

  1. 暂无文件

CSS

  1. 暂无文件

JavaScript

  1. 暂无文件

其他

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