End-to-End Brand & Product Design for BlueFinch: A Suite of Tools and Products for the Magento Ecosystem
Creative Direction, Graphic Design, UX/UI Design
// Select all images in the "gallery" class
const images = document.querySelectorAll('.work img');
// Loop through each image and add the loading attribute
images.forEach(image => {
image.setAttribute('loading', 'lazy');
});