A number pad I've frankensteined together needs a fadeout to the original fillStyle
opacity 0.1
on the mouseup
event, but I'm having trouble figuring out a way to design it. The mousedown
event sets the fillStyle
to 0.5
. I was wondering if anyone had any ideas. I figure that the fadeout needs to be built after the context.clearRect()
method. I've seen examples of a loop being created, but I had trouble implementing it into my code. I appreciate any help.
canvas.addEventListener('mouseup', function(event) {
var x = event.pageX - elemLeft,
y = event.pageY - elemTop;
elements.forEach(function(element) {
if (y > element.top && y < element.top + element.height && x > element.left && x < element.left + element.width) {
var topLeftX = element.centX - 47;
var topLeftY = element.centY - 47;
context.clearRect(topLeftX, topLeftY, 95, 95);
//Fade out code here?
context.beginPath();
context.font = "bold 48px Arial";
context.fillStyle = 'rgb(255,255,0)';
context.fillText(element.id, element.textX, element.textY);
context.arc(element.centX, element.centY, element.rad, 0, 2 * Math.PI, false);
context.fillStyle = 'rgba(255,255,255,0.1)';
context.fill();
context.lineWidth = 5;
context.strokeStyle = 'rgba(255,255,0,.5)';
context.stroke();
}
});
}, false);
Create an independent animation loop that incrementally changes a target button's opacity when you want one of your buttons to fade-back-to-original.
Example code and a Demo: