top of page

WIX Resources Table

Title
Description
URL (text)
CodeExample
Virtual drums 4
Good online drums
https://www.onemotion.com/drum-machine/
https://www.onemotion.com/drum-machine/
Y7 Test 1
This is a test from a Y7 site member
klosemusic.com
code example really needs to be changed
Chordify- Ukulele Info
Useful website for chords-this particular page has blog on Ukulele tunings
https://chordify.net/pages/tune-your-ukulele/?utm_source=Mautic&utm_medium=E-mail&utm_campaign=Content+email
Na
DOM issue in WIX
forum post with 3 replies - use customer element or iFrame
https://stackoverflow.com/questions/66547110/why-is-wix-velo-reporting-document-is-not-defined
sass
Keezy - App - SoundLab
great resource for music apps
https://www.heartnsoulsoundlab.com/playblog/2017/11/25/keezy-drummer-app
----
npm API with WIX weather tutorial
an example that actually works!!
https://www.wix.com/velo/example/city-weather
import { getSecret } from 'wix-secrets-backend'; import { fetch } from 'wix-fetch'; export async function getCityBasedWeather(city) { const key = await getSecret("openWeatherApi"); const url = `https://api.openweathermap.org/data/2.5/weather?q=${city}&appid=${key}&units=metric`; const res = await fetch(url); const resJson = await res.json(); return { src: `https://openweathermap.org/img/wn/${resJson.weather[0].icon}@4x.png`, city: resJson.name, country: resJson.sys.country, temp: resJson.main.temp, description: resJson.weather[0].description, } }
How to create music with Tone.js
clear tutorial on various simple TONE.js music code examples
https://www.devbridge.com/articles/tonejs-coding-music-production-guide/
<script src="https://unpkg.com/tone"></script> <button id="play-button">Play/Pause</button> <script src="music.js"></script> const synth = new Tone.Synth().toMaster() synth.triggerAttackRelease('C4', '8n') document.getElementById("play-button").addEventListener("click", function() { if (Tone.Transport.state !== 'started') { Tone.Transport.start(); } else { Tone.Transport.stop(); } });
On-line Sight Reading Training Program
exzcellent and very cheap sight reading training app
https://www.sightreadingfactory.com/
works on remotely on pc's macs, iphpnes, android and tablets
Drum Corp website
Good resources and info
https://www.rudimentaluniversity.com/drum-line-cadences/
Hddhdhdf
Free Online Ear Training website
ditto
https://www.earbeater.com/online-ear-training/#/
EarBeaterWEB
Howler.js Youtube video
very useful 40min talk from creator of Howler + tunes
https://www.youtube.com/watch?v=TxZMeFHFZmA
plenty of code examples in the video
Howler.js resource
Explains more
https://www.javascripting.com/view/howler-js
Aaa
bottom of page