JavaScript30
JavaScript30 copied to clipboard
30 Day Vanilla JS Challenge
Link to MDN documentation about keyCode event: https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/keyCode
NOTE: at newer version of Firefox, Chrome and Edge, the mousemove event do not cover intermediate changes on the color input … but this commit with the new input event...
In the first application: "01 - JavaScript Drum Kit", when we hit the keys with a gap of a fraction of seconds, it works fine. But when we keep the...
Sir there was a bug in the code that when we press and hold a key the class "playing" was added and never removed. I solved it by using "keyup"...
controls were not visible so I uncommented them out.
Index.html created with reference to https://javascript30.com/
While watching [the lesson video JavaScript Array Cardio Practice - Day 1](https://www.youtube.com/watch?v=HB1ZC7czKRs), I noticed that problem 4 gave me unexpected results (where you calculate the total ages). I also noticed...
Hey ! This patch will fix the drumkit bug (when you press too many times, the css class gets stuck). The second is an alternative to the exo 6. I...
Altered the height of minute-hand and hour-hand as to make it easier to distinguish between each hand, like on a real analog clock. (Added border-radius to all hands to change...