Blame view

WebRoot/static/login/js/ban.js 3.7 KB
ad5081d3   孙向锦   初始化项目
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
  try{
      if (/Android|webOS|iPhone|iPod|BlackBerry/i.test(navigator.userAgent)) {
  
      }else{
          $(function(){
    var canvas = document.querySelector('canvas'),
        ctx = canvas.getContext('2d')
    canvas.width = $(window).width();
    canvas.height = $(window).height();
    ctx.lineWidth = .3;
    ctx.strokeStyle = (new Color(150)).style;
  
    var mousePosition = {
      x: 30 * canvas.width / 100,
      y: 30 * canvas.height / 100
    };
  
    var dots = {
      nb: 250,
      distance: 100,
      d_radius: 150,
      array: []
    };
  
    function colorValue(min) {
      return Math.floor(Math.random() * 255 + min);
    }
    
    function createColorStyle(r,g,b) {
      return 'rgba(' + r + ',' + g + ',' + b + ', 0.8)';
    }
    
    function mixComponents(comp1, weight1, comp2, weight2) {
      return (comp1 * weight1 + comp2 * weight2) / (weight1 + weight2);
    }
    
    function averageColorStyles(dot1, dot2) {
      var color1 = dot1.color,
          color2 = dot2.color;
      
      var r = mixComponents(color1.r, dot1.radius, color2.r, dot2.radius),
          g = mixComponents(color1.g, dot1.radius, color2.g, dot2.radius),
          b = mixComponents(color1.b, dot1.radius, color2.b, dot2.radius);
      return createColorStyle(Math.floor(r), Math.floor(g), Math.floor(b));
    }
    
    function Color(min) {
      min = min || 0;
      this.r = colorValue(min);
      this.g = colorValue(min);
      this.b = colorValue(min);
      this.style = createColorStyle(this.r, this.g, this.b);
    }
  
    function Dot(){
      this.x = Math.random() * canvas.width;
      this.y = Math.random() * canvas.height;
  
      this.vx = -.5 + Math.random();
      this.vy = -.5 + Math.random();
  
      this.radius = Math.random() * 2;
  
      this.color = new Color();
    }
  
    Dot.prototype = {
      draw: function(){
        ctx.beginPath();
        ctx.fillStyle = this.color.style;
        ctx.arc(this.x, this.y, this.radius, 0, Math.PI, false);
        ctx.fill();
      }
    };
  
    function createDots(){
      for(i = 0; i < dots.nb; i++){
        dots.array.push(new Dot());
      }
    }
  
    function moveDots() {
      for(i = 0; i < dots.nb; i++){
  
        var dot = dots.array[i];
  
        if(dot.y < 0 || dot.y > canvas.height){
          dot.vx = dot.vx;
          dot.vy = - dot.vy;
        }
        else if(dot.x < 0 || dot.x > canvas.width){
          dot.vx = - dot.vx;
          dot.vy = dot.vy;
        }
        dot.x += dot.vx;
        dot.y += dot.vy;
      }
    }
  
    function connectDots() {
      for(i = 0; i < dots.nb; i++){
        for(j = 0; j < dots.nb; j++){
          i_dot = dots.array[i];
          j_dot = dots.array[j];
  
          if((i_dot.x - j_dot.x) < dots.distance && (i_dot.y - j_dot.y) < dots.distance && (i_dot.x - j_dot.x) > - dots.distance && (i_dot.y - j_dot.y) > - dots.distance){
            if((i_dot.x - mousePosition.x) < dots.d_radius && (i_dot.y - mousePosition.y) < dots.d_radius && (i_dot.x - mousePosition.x) > - dots.d_radius && (i_dot.y - mousePosition.y) > - dots.d_radius){
              ctx.beginPath();
              ctx.strokeStyle = averageColorStyles(i_dot, j_dot);
              ctx.moveTo(i_dot.x, i_dot.y);
              ctx.lineTo(j_dot.x, j_dot.y);
              ctx.stroke();
              ctx.closePath();
            }
          }
        }
      }
    }
  
    function drawDots() {
      for(i = 0; i < dots.nb; i++){
        var dot = dots.array[i];
        dot.draw();
      }
    }
  
    function animateDots() {
      ctx.clearRect(0, 0, canvas.width, canvas.height);
      moveDots();
      connectDots();
      drawDots();
  
      requestAnimationFrame(animateDots);	
    }
  
    $('canvas').on('mousemove', function(e){
      mousePosition.x = e.pageX;
      mousePosition.y = e.pageY;
    });
  
    $('canvas').on('mouseleave', function(e){
      mousePosition.x = canvas.width / 2;
      mousePosition.y = canvas.height / 2;
    });
  
    createDots();
    requestAnimationFrame(animateDots);	
  });
      }
  }catch(e){}