A PHP Error was encountered

Severity: Notice

Message: Undefined index: HTTP_ACCEPT_LANGUAGE

Filename: controllers/item.php

Line Number: 25

A PHP Error was encountered

Severity: Notice

Message: Undefined index: HTTP_ACCEPT_LANGUAGE

Filename: controllers/item.php

Line Number: 1114

EffectHub.com: your best source for gaming
Recommendation
More Effects...
JS
1
var circles = 12, 
2
        delta = 0,
3
        frames = 100;
4
 
5
function setup() {
6
  createCanvas(450, 450);
7
}
8
 
9
function draw() {
10
  background(50);
11
  stroke(0,200,200);  
12
    noFill();
13
 
14
  for (var i=0; i<circles; i++) {
15
    var size = i*35;
16
    var weight = map(sin(delta+TWO_PI/circles*i), -1, 1, 1, 16);
17
    strokeWeight(weight);  
18
    ellipse(width/2, height/2, size, size);
19
  }
20
  delta += TWO_PI/frames;
21
}
 
CSS
1
body {
2
  background: #323232;
3
}
4
 
5
canvas {
6
  display: block;
7
  margin: auto;
8
}
9
 
 
HTML
1
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.5.7/p5.min.js"></script>
 

Join Effecthub.com

Working with Global Gaming Artists and Developers!


Or Sign Up with Your Email Address:
This field must contain a valid email
Password should be at least 1 character