Skip to content

Instantly share code, notes, and snippets.

View miyataken999's full-sized avatar

kenichi miyata miyataken999

View GitHub Profile

Chat Widget

JavaScript chat widget, designed and built from scratch. Enter a message in and you will receive a random Hipsum message back with a time stamp to match. I tried to use as little jQuery as possible and this is my first time using the SASS compiler. Any feedback would be great as I'm still not very experienced with javascript.

View on Github: https://github.com/AndrewHaine/Chat-Widget

A Pen by Andrew Haine on CodePen.

License.

@miyataken999
miyataken999 / index.html
Created August 12, 2018 18:05
Shadow Parallax • Reactjs
<!-- Goodbye DOMs ∆ This pen written by Reactjs -->

Gundam Boy demo

Collect the energy to boost, avoid the asteroid debris! A ThreeJS game work-in-progress.

A Pen by Alcina W on CodePen.

License.

@miyataken999
miyataken999 / canvas-api.markdown
Created August 24, 2018 19:45
Canvas APIを使ってお絵描き
@miyataken999
miyataken999 / index.html
Created August 26, 2018 09:18
ThreeJS Fixed scene background image
<div class="outer">
<div class="inner">
<div id="container"></div>
</div>
</div>
<div class="outer">
<div class="inner">
<div id="debug-container">
@miyataken999
miyataken999 / script.js
Created August 26, 2018 09:25
THREEJS: Update texture on click
var scene = new THREE.Scene();
scene.background = new THREE.Color( 0xcccccc );
var camera = new THREE.PerspectiveCamera(45, window.innerWidth / window.innerHeight, 0.1, 1000);
camera.position.z = 5;
camera.position.y = 5;
camera.position.x = 5;
camera.lookAt(new THREE.Vector3(0,0,0)); // Make the camera look at the point of origin
GIST
@miyataken999
miyataken999 / index.html
Created September 9, 2018 16:06
VueJS Header responsive & Loader
<div id="app">
<link href="https://fonts.googleapis.com/css?family=Roboto|Poppins" rel="stylesheet">
<meta name="viewport" content="width=device-width">
<header>
<div class="wrap">
<div id="hamburger" v-on:click="display_menu()">
<span></span>
<span></span>
<span></span>
</div>
@miyataken999
miyataken999 / index.html
Created September 9, 2018 16:07
VueJS Search input with debounce
<h1 class="text-center">VueJS Search Input with Debounce</h1>
<p class="lead text-muted text-center">Using lodash _.debounce with a 1s delay</p>
<div id="app">
<my-list/>
</div>

Chill the lion

WebGL experiment using ThreeJS. Move the fan and press to make wind, the lion will surely appreciate.

A Pen by Karim Maaloul on CodePen.

License.