I find myself without a laptop so I'm testing to see if I can still experiment with a iPad stacked on a bunch of Dr. Seuss books tied to a wireless keyboard.
So far the answer is nope.
Built with blockbuilder.org
| license: mit |
I find myself without a laptop so I'm testing to see if I can still experiment with a iPad stacked on a bunch of Dr. Seuss books tied to a wireless keyboard.
So far the answer is nope.
Built with blockbuilder.org
| <!DOCTYPE html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <script src="https://d3js.org/d3.v5.min.js"></script> | |
| <style> | |
| body { margin:0;position:fixed;top:0;right:0;bottom:0;left:0; } | |
| </style> | |
| </head> | |
| <body> | |
| <script> | |
| // Feel free to change or delete any of the code you see in this editor! | |
| const svg = d3.select("body").append("svg") | |
| .attr("width", 200) | |
| .attr("height", 200) | |
| svg.append("text") | |
| .text("Possible to code on a iPad?!") | |
| .attr("y", 0) | |
| .attr("x", 0) | |
| .attr("font-size", 36) | |
| .attr("font-family", "monospace") | |
| const world = svg.append('g'); | |
| world | |
| .append('rect') | |
| .attr('width', 200) | |
| .attr('height', 200) | |
| .style('fill', 'acqua') | |
| </script> | |
| </body> |