Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR HTML

turn of blur html canvas

const canvas = document.getElementById('canvas');
const ctx = canvas.getContext('2d');

ctx.filter = 'blur(4px)';
ctx.font = '48px serif';
ctx.fillText('Hello world', 50, 100);
Source by developer.mozilla.org #
 
PREVIOUS NEXT
Tagged: #turn #blur #html #canvas
ADD COMMENT
Topic
Name
4+7 =