/* lazy-load.css */
img {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

img[src] {
  opacity: 1;
}