view source

JavaScript

document.title = 'Canvasで記号的な絵を描く';

$(function(){
  var w = document.body.clientWidth;
  var h = window.innerHeight;
  var wh = Math.min(w,h);
  var padding = 10;
  var r = 80;
  var cx = r+padding;
  var cy = r+padding;

  var canvas = $('<canvas>',{width:w, height:h});
  canvas[0].width = w;
  canvas[0].height = h;
  $('#demo').append(canvas);
  var ctx = canvas[0].getContext('2d');

  $btn = $('<button>').text('bell').on('click',function(){
    ctx.clearRect(0, 0, w, h);
    drawBell(cx, cy , r)
  });
  canvas.after($btn);


  drawBell = function(x,y,w,color,isStroke){
      ctx.fillStyle = color || "#ffff00";
      ctx.lineWidth = 12;
      ctx.beginPath();
      ctx.arc(x, y+w, w, Math.PI*2, Math.PI, true);
      ctx.closePath();
      ctx.fill();
      if(isStroke){
        ctx.stroke();
      }
      ctx.beginPath();
      ctx.arc(x, y-w/16, w/3, 0, Math.PI * 2, true);
      ctx.closePath();
      if(isStroke){
        ctx.stroke();
      }
      ctx.fill();
      ctx.beginPath();
      ctx.rect(x-w, y+w, w*2, w/2);
      ctx.closePath();
      if(isStroke){
        ctx.stroke();
      }
      ctx.fill();
  }
  drawCherry = function(x,y,w,color,isStroke){
      ctx.fillStyle = color || "#ffff00";
      ctx.lineWidth = 12;

      ctx.beginPath();
      ctx.arc(x-w/2, y+w, w/2, 0, Math.PI * 2, true);
      ctx.closePath();
      if(isStroke){
        ctx.stroke();
      }
      ctx.fill();

      ctx.beginPath();
      ctx.arc(x+w/2, y+w, w/2, 0, Math.PI * 2, true);
      ctx.closePath();
      if(isStroke){
        ctx.stroke();
      }
      ctx.fill();

  }

  drawBell(cx, cy , r, '#000000', true);
  drawBell(cx, cy , r, '#ffff00');
  drawCherry(cx, cy , r, '#000000', true);
  drawCherry(cx, cy , r, '#ff0000');
});

CSS

HTML

ページのソースを表示 : Ctrl+U , DevTools : F12

view-source:https://hi0a.com/demo/-js/js-canvas-pict/

ABOUT

hi0a.com 「ひまアプリ」は無料で遊べるミニゲームや便利ツールを公開しています。

プログラミング言語の動作デモやWEBデザイン、ソースコード、フロントエンド等の開発者のための技術を公開しています。

必要な機能の関数をコピペ利用したり勉強に活用できます。

プログラムの動作サンプル結果は画面上部に出力表示されています。

環境:最新のブラウザ GoogleChrome / Windows / Android / iPhone 等の端末で動作確認しています。

画像素材や音素材は半分自作でフリー素材配布サイトも利用しています。LINK参照。

動く便利なものが好きなだけで技術自体に興味はないのでコードは汚いです。

途中放置や実験状態、仕様変更、API廃止等で動かないページもあります。