+ 5
How can I make a canvas pattern as the background of the webpage?
2 Respuestas
+ 21
document.body.style.backgroundImage=canvas.toDataURL();
+ 4
$('body').css("background-image",canvas.toDataURL());
Is the following jQuery interpretation correct?