Skip to content

Instantly share code, notes, and snippets.

View katsumitakano's full-sized avatar
🏠
Working from home

Katsumi Takano katsumitakano

🏠
Working from home
  • Tokyo
View GitHub Profile
@katsumitakano
katsumitakano / README.md
Last active August 29, 2015 13:55
ランダムバブルチャート

ランダムバブルチャート

更新する度に表示が変わるバブルチャート

@katsumitakano
katsumitakano / index.html
Created February 3, 2014 08:43
円弧のサンプル
<!doctype html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style type="text/css">
body{
width: 960px;
height: 500px;
}
@katsumitakano
katsumitakano / index.html
Created February 3, 2014 07:12
三次ベジェ曲線
<!doctype html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style type="text/css">
body{
width: 960px;
height: 500px;
}
@katsumitakano
katsumitakano / index.html
Created February 3, 2014 06:58
二次ベジェ曲線
<!doctype html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style type="text/css">
body{
width: 960px;
height: 500px;
}
@katsumitakano
katsumitakano / index.html
Last active August 29, 2015 13:55
path sample
<!doctype html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style type="text/css">
body{
width: 960px;
height: 500px;
}
@katsumitakano
katsumitakano / index.html
Last active August 29, 2015 13:56
CSS3 Transition Sample
<!doctype html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>アニメーションのサンプル</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="box bgcolor">bgcolor</div>
<div class="box double">double</div>
@katsumitakano
katsumitakano / index.html
Created February 21, 2014 13:49
[D3.js] Pie chart
<!doctype html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>円グラフ</title>
<script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script>
</head>
<body>
<script>
var dataset = [
@katsumitakano
katsumitakano / index.html
Last active August 29, 2015 13:57
Japan Map [TopoJSON]
<!doctype html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>日本地図を描画する</title>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://d3js.org/topojson.v0.min.js"></script>
</head>
<body>
@katsumitakano
katsumitakano / index.html
Created March 17, 2014 14:59
[CSS] 3D Cube
<!doctype html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>Cube</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="cube-container">
<div class="cube">
@katsumitakano
katsumitakano / index.html
Last active August 29, 2015 13:57
Force Layout
<!doctype html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>force-layout</title>
<script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script>
<style>
.node {
stroke: #fff;