function carregarImagens(){
    $(".lazyload").each(function(indice, elemento){
        let imagemUrl = $(this).attr('lazyload-src')
       
        fetch(`${imagemUrl}`, {
            headers: {
                'mode': 'no-cors'
            }
        })
            .then(res => res.blob())
            .then(res => console.log(res))
            .catch(() => {
                $(elemento).attr('src','assets/img/404-other.png')
            })

    });
}