end0tknr's kipple - web写経開発

太宰府天満宮の狛犬って、妙にカワイイ

2022-06-05から1日間の記事一覧

svg + html + css による棒グラフ

html + css で簡単な棒グラフ - end0tknr's kipple - web写経開発 上記 entry のように以前は、css の border-width で 棒グラフを描いていましたが、 今回は、svg な画像を用意し、その上で cssの background-~ でグラフ化。 <svg xmlns="http://www.w3.org/2000/svg" width="4" height="4"> <line x1="0" y1="2" x2="4" y2="2" stroke-width="4" stroke="#00F" />…</line></svg>

navigator.geolocation.getCurrentPosition() の Promise, async, await による同期関数化

javascriptによるブラウザの位置情報(緯度経度)取得が 非同期関数で扱いづらい為、以下のような感じへ 'use strict'; class AppBase { constructor() {} error_to_server =(err_msg)=> { // console.log(err_msg); const xhr = new XMLHttpRequest(); const …