Minggu, 17 Maret 2013
Glow.js - Sebelum di sederhanakan
var createGambarGlow = new (function(){
var that = this;
that.radius = 15
that.draw = function(){
try {
var x
var y
var startAngle
var endAngle
var counterClockwise
x = 483
y = 301
startAngle = 0
endAngle = 360
counterClockwise = true;
ctx.save();
ctx.beginPath();
ctx.moveTo(x, y);
ctx.arc(x, y, that.radius, startAngle, endAngle, counterClockwise);
ctx.lineTo(x, y);
ctx.lineWidth = 2;
//ctx.fillStyle = 'rgba(255,255,0,0.9)';// fill color
var sudut1 = xybutton[nosoal].sdt1;
var sudut2 = xybutton[klikbtn].sdt2;
var jumlsudut = sudut1+sudut2;
var fsudut = jumlsudut==180;
// create radial gradient
var grd = ctx.createRadialGradient(x, y, 0, x, y, that.radius);
if(fsudut){
grd.addColorStop(0, 'rgba(0,220,200,1)');// biru
grd.addColorStop(1, '#FFFFFF'); // putih
}else{
grd.addColorStop(0, 'rgba(255,0,255,0.9)');// merah
grd.addColorStop(1, '#FFFFFF');// putih
}
ctx.fillStyle = grd;
ctx.fill();
ctx.restore();
} catch (e) {};
}
})();
Langganan:
Posting Komentar (Atom)
Tidak ada komentar:
Posting Komentar