Skip to content

Instantly share code, notes, and snippets.

View miyataken999's full-sized avatar

kenichi miyata miyataken999

View GitHub Profile
@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 / canvas-api.markdown
Created August 24, 2018 19:45
Canvas APIを使ってお絵描き

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 / index.html
Created August 12, 2018 18:05
Shadow Parallax • Reactjs
<!-- Goodbye DOMs ∆ This pen written by Reactjs -->

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 March 1, 2018 15:48
ThreeJS Gradient
<div id="canvas"></div>
@miyataken999
miyataken999 / web-service-soap-client-server-php.md
Created January 19, 2018 19:02 — forked from umidjons/web-service-soap-client-server-php.md
Simple Web service - SOAP Server/Client in PHP

Simple Web service - SOAP Server/Client in PHP

Implementation of the SOAP server - server.php:

<?php
// turn off WSDL caching
ini_set("soap.wsdl_cache_enabled","0");

// model, which uses in web service functions as parameter
https://sites.google.com/bpm999.com/bpm999com/home
@miyataken999
miyataken999 / index.html
Created August 24, 2017 12:49 — forked from mbajur/index.html
Working example of window.postMessage used for sending data from popup to parent page (works in IE)
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Index</title>
<script type="text/javascript">
window.open ("popup.html","mywindow", "width=350,height=250");
// Create IE + others compatible event handler
@miyataken999
miyataken999 / index.html
Created August 18, 2017 18:49
Music Player UI
<div class="app">
<section class="player">
<img class="player__cover" :src="currentTrack.cover.large" alt="" />
<div class="player__timer">
<div class="player__timer__elapsed" v-text="player.elapsed | time"></div>
<div class="player__timer__total" v-text="currentTrack.duration | time"></div>
</div>
<div class="slider player__progress-bar">
<input type="range" :value="player.elapsed" :max="currentTrack.duration" />
</div>