I have an image that I want to fade when the page loads.
I set the css for this image to zero opacity.
Then I use js to gradually reduce the image (increase the opacity to 1). This happens about a second after the page loads.
I can imagine that elements with zero opacity will not add SEO value. However, I know that a Google crawler can read JS to some extent. Does this mean that he will understand that he is visible in a second and indexes it like any ordinary image?
Also, how will SEO impact if I replace the opacity “display: none” when the page loads and “display: block” with JS in a second?
Any insight would be appreciated, welcome!
source
share