- 1
á(Ìââà±Șâââ”á)
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title> for you, creator!</title> </head> <body> <div id="svg-c"></div> <script src="https://cdnjs.cloudflare.com/ajax/libs/svg.js/2.3.2/svg.min.js"></script> <script type="text/javascript"> let draw = SVG('svg-c').size(1000, 1000); let rd = (mp) => { return Math.round(Math.random() * mp); }; for (let x = 0; x < rd(10); x++) draw.line(rd(1000), rd(1000), rd(1000), rd(1000)).stroke({ width: 1 }); for (let y = 0; y < rd(10); y++) { let c = draw.circle(rd(1000)).stroke({ width: 1 }); c.move(rd(1000), rd(1000)); }; console.log('I drew the Creator himself'); </script> </body> </html>
2 Answers
+ 1
what do want to say or do with given webpage code
+ 1
no-sense