first commit

This commit is contained in:
klein panic
2024-09-29 01:05:25 -04:00
commit 2bcc806b8b
670 changed files with 96169 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
html2canvas(document.body).then(function(canvas) {
canvas.toBlob(function(blob) {
var a = document.createElement('a');
var url = URL.createObjectURL(blob);
a.href = url;
a.download = 'png.png';
a.click();
window.URL.revokeObjectURL(url);
})
});