dat.gui/demo/demo.js
George Michael Brower f62a04c8e9 Version 0.1
2011-01-26 19:45:34 -07:00

169 lines
4.2 KiB
JavaScript

function FizzyText(message) {
var _this = this;
var width = 550;
var height = 200;
var textAscent = 82;
var textLeft = 80;
this.growthSpeed = 0.5;
this.minSize = 0;
this.maxSize = 3.2;
this.noiseScale = 300;
this.noiseStrength = 10;
this.speed = 0.4;
this.displayOutline = false;
this.textAscent = textAscent;
var colors = ["#00aeff", "#0fa954", "#54396e", "#e61d5f"];
var r = document.createElement('canvas');
var s = r.getContext('2d');
var c = document.createElement('canvas');
var g = c.getContext('2d');
r.setAttribute('width', width);
c.setAttribute('width', width);
r.setAttribute('height', height);
c.setAttribute('height', height);
document.getElementById('helvetica-demo').appendChild(c);
var pixels = [];
var particles = [];
s.font = g.font = "800 " + textAscent + "px helvetica, arial, sans-serif";
// Set reference onto particles
for (var i = 0; i < 1000; i++) {
particles.push(new Particle(Math.random() * width, Math.random() * height));
}
var createBitmap = function (m) {
s.fillStyle = "#fff";
s.fillRect(0, 0, width, height);
s.fillStyle = "#222";
s.fillText(m, textLeft, textAscent);
// Pull reference
var imageData = s.getImageData(0, 0, width, height);
pixels = imageData.data;
};
var render = function () {
g.clearRect(0, 0, width, height);
if (_this.displayOutline) {
g.globalCompositeOperation = "source-over";
g.strokeStyle = "#000";
g.lineWidth = .5;
g.strokeText(message, textLeft, textAscent);
}
g.globalCompositeOperation = "darker";
for (var i = 0; i < particles.length; i++) {
g.fillStyle = colors[i % colors.length];
particles[i].render();
}
};
var getPosition = function (i) {
return {
x: (i - (width * 4) * Math.floor(i / (width * 4))) / 4,
y: Math.floor(i / (width * 4))
};
};
var getColor = function (x, y) {
var base = (Math.floor(y) * width + Math.floor(x)) * 4;
var c = {
r: pixels[base + 0],
g: pixels[base + 1],
b: pixels[base + 2],
a: pixels[base + 3]
};
return "rgb(" + c.r + "," + c.g + "," + c.b + ")";
};
this.__defineGetter__("message", function () {
return message;
});
this.__defineSetter__("message", function (m) {
message = m;
createBitmap(message);
});
this.explode = function() {
var mag = Math.random()*30+30;
for (var i in particles) {
var angle= Math.random()*Math.PI*2;
particles[i].vx = Math.cos(angle)*mag;
particles[i].vy = Math.sin(angle)*mag;
}
};
this.message = message;
setInterval(render, 30);
function Particle(x, y, c) {
this.x = x;
this.y = y;
this.vx = 0;
this.vy = 0;
this.r = 0;
this.render = function () {
var c = getColor(this.x, this.y);
var angle = noise(this.x / _this.noiseScale, this.y / _this.noiseScale) * _this.noiseStrength;
var onScreen = this.x > 0 && this.x < width &&
this.y > 0 && this.y < height;
var isBlack = c != "rgb(255,255,255)" &&
onScreen;
if (isBlack) {
this.r += _this.growthSpeed;
} else {
this.r -= _this.growthSpeed;
}
this.vx *= 0.5;
this.vy *= 0.5;
this.x += Math.cos(angle) * _this.speed + this.vx;
this.y += -Math.sin(angle) * _this.speed + this.vy;
this.r = constrain(this.r, _this.minSize, _this.maxSize);
if (this.r <= _this.minSize) {
this.x = Math.random() * width;
this.y = Math.random() * height;
}
if (this.r <= 0) {
return;
}
g.beginPath();
g.arc(this.x, this.y, this.r, 0, Math.PI * 2, false);
g.fill();
}
}
var constrain = function (v, o1, o2) {
if (v < o1) v = o1;
else if (v > o2) v = o2;
return v;
}
}