Skip to content

Instantly share code, notes, and snippets.

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

Kazuki Shibata shibe97

🏠
Working from home
View GitHub Profile
@shibe97
shibe97 / index.html
Last active April 27, 2022 08:53
microCMSで取得したデータをテンプレートエンジンを使って表示する
<html>
<head>
<title>microCMSで取得したデータをテンプレートエンジンを使って表示する</title>
</head>
<body>
<div id="result" />
<script
src="https://code.jquery.com/jquery-3.3.1.min.js"
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
@shibe97
shibe97 / card_animation.html
Created June 22, 2016 13:13
card type animation
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>card animation</title>
<style>
body {
background-color: #7cccbe;
}
</style>
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>JS Bin</title>
</head>
<body>
</body>
</html>
@shibe97
shibe97 / circleart.html
Created October 10, 2013 09:10
Circle Art
<canvas id="canvas" width="1000" height="1000"></canvas>
<script type="text/javascript">
var canvas = document.getElementById('canvas');
var ctx = canvas.getContext('2d');
var ballArray = [];
window.onload = function(){
canvas.addEventListener("mousemove",mouseDownListener,false);
loop();
};
var loop = function(){