I have a question about a javascript code to make images visible after 5 seconds. Could you implement the fade effect to the appearance of the images by embedding this code?
function change () {
var images = document.querySelectorAll(".image img");
images.forEach(image=>image.style.visibility = "visible");
}
setTimeout (change, 5000);