├── .eslintrc ├── .gitignore ├── README.md ├── audio └── 505 │ ├── hh.mp3 │ ├── hh.ogg │ ├── hho.mp3 │ ├── hho.ogg │ ├── kick.mp3 │ ├── kick.ogg │ ├── snare.mp3 │ └── snare.ogg ├── css ├── normalize.css └── scss │ └── style.scss ├── gulpfile.js ├── img ├── Knightlogo.png ├── notation-eighthnotes.png ├── notation-halfnote.png ├── notation-quarternotes.png └── notation-sixteenthnotes.png ├── index.html ├── js └── knightrider.js └── package.json /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redacademy/tonejs-starter/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redacademy/tonejs-starter/HEAD/README.md -------------------------------------------------------------------------------- /audio/505/hh.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redacademy/tonejs-starter/HEAD/audio/505/hh.mp3 -------------------------------------------------------------------------------- /audio/505/hh.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redacademy/tonejs-starter/HEAD/audio/505/hh.ogg -------------------------------------------------------------------------------- /audio/505/hho.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redacademy/tonejs-starter/HEAD/audio/505/hho.mp3 -------------------------------------------------------------------------------- /audio/505/hho.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redacademy/tonejs-starter/HEAD/audio/505/hho.ogg -------------------------------------------------------------------------------- /audio/505/kick.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redacademy/tonejs-starter/HEAD/audio/505/kick.mp3 -------------------------------------------------------------------------------- /audio/505/kick.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redacademy/tonejs-starter/HEAD/audio/505/kick.ogg -------------------------------------------------------------------------------- /audio/505/snare.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redacademy/tonejs-starter/HEAD/audio/505/snare.mp3 -------------------------------------------------------------------------------- /audio/505/snare.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redacademy/tonejs-starter/HEAD/audio/505/snare.ogg -------------------------------------------------------------------------------- /css/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redacademy/tonejs-starter/HEAD/css/normalize.css -------------------------------------------------------------------------------- /css/scss/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redacademy/tonejs-starter/HEAD/css/scss/style.scss -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redacademy/tonejs-starter/HEAD/gulpfile.js -------------------------------------------------------------------------------- /img/Knightlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redacademy/tonejs-starter/HEAD/img/Knightlogo.png -------------------------------------------------------------------------------- /img/notation-eighthnotes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redacademy/tonejs-starter/HEAD/img/notation-eighthnotes.png -------------------------------------------------------------------------------- /img/notation-halfnote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redacademy/tonejs-starter/HEAD/img/notation-halfnote.png -------------------------------------------------------------------------------- /img/notation-quarternotes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redacademy/tonejs-starter/HEAD/img/notation-quarternotes.png -------------------------------------------------------------------------------- /img/notation-sixteenthnotes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redacademy/tonejs-starter/HEAD/img/notation-sixteenthnotes.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redacademy/tonejs-starter/HEAD/index.html -------------------------------------------------------------------------------- /js/knightrider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redacademy/tonejs-starter/HEAD/js/knightrider.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redacademy/tonejs-starter/HEAD/package.json --------------------------------------------------------------------------------