2020-09-01から1ヶ月間の記事一覧

オブジェクト指向的なフラクタルの木の描画

<html lang="ja"> <meta charset="UTF-8"> <title></title> <style> canvas { width: 100vw; height: 100vh; } </style> <canvas></canvas> <script> class CG { constructor (canvas) { this.canvas = canvas; this.ctx = canvas.getContext ('2d'); canvas.width = canvas.clientWidth; canvas.height = …</meta></html>

年・月・日の入力を SELECT 要素で連動する(年度指定も可)

年・月・日の入力を SELECT 要素で連動する(年度指定も可) 年月日の入力を簡単にする。 マウスホイールにも対応。 年月日の範囲も指定可能。例:dateObj を [-7, 0, 10] の様な引数にすると、[一週間前, 今日, 10日後] の様な指定も可能。 使い方 chainD…