
Change the aspect ratio of an image using CSS
24/09/2021In this post I'll show you how to change the aspect ratio of an image or element using CSS, and explain why this is important.
I used to just make websites and it made me completely ignorant to the importance of listening to keypress events in JavaScript. In truth, I didn’t ever have the need to handle multiple keypresses. Now that I have moved into app, gui and game development getting the keypresses right has become a lot more important.
The first thing I would like to say on the subject is not to use the ‘keypress’ event. This feature has been deprecated and gives you less control. I personally use ‘keydown’ and ‘keyup’ events instead.
A ‘keydown’ event listener looks like this:
document.addEventListener('keydown', (event) => {
// do something
});
When we use a ‘keydown’ event we are listening for the moment when a key is pressed. We can similarly react when a key is released using the ‘keyup’ event.
document.addEventListener('keyup', (event) => {
// do something
});
The above example is attached to the document. It is important to understand that where we attach the listener changes the behaviour. By attaching it to a more specific element we can localise key events and behaviours to when the element contains focus-within.
<div id="box">
<input type="text">
</div>
<script>
document.getElementById('input').addEventListener('keydown', (event) => {
alert('inside box');
});
</script>
Notice that within the above example our ‘keydown’ event doesn’t fire when our focus is within the document, but does when we are in the input.
At the moment our ‘do something’ code will fire on every key press. More commonly it is likely that we want to tie the ‘do something’ to a specific key press. This is why it is important to make the ‘event’ object available within our function. From within the ‘event’ object we can use ‘event.key’ to identify the specific key value that was pressed.
document.addEventListener('keyup', (event) => {
if (event.key == 'ArrowUp') {
// do something
}
});
It is worth noting that when using ‘event.key’ we get the value of the key pressed. This means that when using a shift modifier the returned alphabetical character will be uppercase, or any modified character such as an @ symbol.
So what happens when we want to listen to 2 keys being pressed at the same time? Having a modifier key is quite a common scenario and used for the vast majority of keyboard shortcuts in applications.
The answer is to add an object to catch the key presses.
let keysPressed = {};
document.addEventListener('keydown', (event) => {
keysPressed[event.key] = true;
});
When a key is pressed we add the value as the object key and set it to true. We now have a flag to tell us when certain key values are active. Next we make sure that we clear the key values when ‘keyup’ is triggered.
document.addEventListener('keyup', (event) => {
delete this.keysPressed[event.key];
});
Finally we can check for multiple keys with simple statements.
document.addEventListener('keydown', (event) => {
keysPressed[event.key] = true;
if (keysPressed['Control'] && event.key == 'a') {
alert(event.key);
}
});
document.addEventListener('keyup', (event) => {
delete keysPressed[event.key];
});
In this post I'll show you how to change the aspect ratio of an image or element using CSS, and explain why this is important.
Here is how you can fix node incompatibility error, using "Node Sass does not yet support your current environment" as an example.
Need to make a directory in PHP? No Problem! mkdir has you covered... Need to recursively make directories in PHP? mkdir has you covered, too!
Learn how to regenerate and update WordPress media and image sizes both programmatically (without plugin), and also with a handy plugin.
Ever seen constants like __DIR__ and __FILE__ being used in PHP? These are 'Magic Constants', and this is how we can use them.
Learn how to use event listeners to detect and handle single and multiple keypress events in JavaScript. Add modifier keys to your application!
hmmmm…………
YO THIS STUFF IS AWESOME !!
Brilliant!
U have made my day.
Fair enough, i agree.
ert
But if a key is continously pressed, there would be multiple key down events and when the key is released, there would be only one key up event, right ?
if we go with this approach
Nice!
Delete is terrible on performance. Just set the value to false
GELLO
HELLO
Just what I was looking for. Thanks for the info here!
Your cookies are very Yummy..