Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8653709
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T14:36:32+00:00 2026-06-12T14:36:32+00:00

Let’s suppose I use some onload animation for my pages, for example: $(document).ready(function() {

  • 0

Let’s suppose I use some onload animation for my pages, for example:

$(document).ready(function() {
    $('html.myhtml').css('overflow', 'auto').fadeTo(0, 0, function() {
        $(this).css('visibility', 'visible').animate({
            opacity: 1
        }, 200);
    });
})​

and start with an inline style to make it hidden in the first place:

<html class="myhtml" style="visibility:hidden; overflow:hidden">

Initially the page would be served as blank, and then animated with fadein. I want to know:-

  • Does this affect the SEO in any way?
  • Is this practice fine or are there some weighty arguments not to do so?
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-12T14:36:33+00:00Added an answer on June 12, 2026 at 2:36 pm

    Does it effect SEO?

    If I had to answer this with a yes or no answer then I’d say: NO

    Is this practice fine or are there some weighty arguments not to do so?

    We could argue about the animation all day and still not have for sure answer. What purpose does an animation fade have for a search engine? None. So hence its supposedly for the user’s enjoyment? What purpose does an animation fade have for a user? None. So if we go with the ‘Design for users not for search engines’ model I would probably remove the animation. This is my opinion.

    Back to the SEO question, does it effect SEO? Not really no but that depends on the search engine and your audience. If I am a person who uses a screen reader I may not benefit from your page as my screen reader will fail. If I have javascript disabled it will hurt my user experience (I personally browse with FF NoScript plugin).

    I know you said users without javascript have no business on your site but nonetheless you should take this into account and handle it somehow. Also Googlebot does not have javascript or session cookies enabled while it crawls. Secondly if one of your js fails you may want it to gracefully fall back to something useable for the user or at least some instructions letting them know like ‘Welcome! We have fancypants animations going on here that your browser doesn’t support! Please enable javascript’.

    Forced animations in general are annoying to a user, especially when they are repeating every page load. Adding page load is bad for Google SEO since speed is now a factor in ranking.

    Like I mentioned the main Googlebot does not crawl with javascript enabled or session cookies. They have different crawlers for different purposes, like some just for mobile and some for js and some for flash. It is worth noting that having an animation/popup/or anything on load will be captured by ‘Google Instant Previews’ and shown to the user in the results (in your case it might look like a blank page). And like WDever mentioned, in general it is safer to use text-indents or negative margins as your initial state rather then visibility/display/overflow for this sort of thing.

    This is how I would do it (here’s a live preview with 4 second animation delay to test with and without js enabled):

    <html>
    <head>
    <style>
    .myhtml {visibility:hidden; overflow:hidden;}
    </style>
    <script>document.documentElement.className='myhtml'</script>
    </head>
    <body>
    
     1. html is not hidden initially and no class
     2. css styles register .myhtml class with the hidden stuff you want
     3. the script tag just before the BODY tag will fire and add the class to html thus hiding things for those with javascript enabled. Everyone else who has JS disabled sees the page properly.
     4. at the bottom of the page your jquery fires animating the page
    
    <script>
    $(document).ready(function() {
        $('html.myhtml').css('overflow', 'auto').fadeTo(0, 0, function() {
            $(this).css('visibility', 'visible').animate({
                opacity: 1
            }, 200);
        });
    })​
    </script>
    </body>
    </html>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Let's have an example like below: package xliiv.sandbox; import android.app.Activity; import android.os.Bundle; import android.util.Log;
Let me explain best with an example. Say you have node class that can
Let me try to explain by example. Say website is hosted at example.com (NOT
Let's say we have two pages in Orchard CMS. The homepage and the About
Let's consider this code: (function(){ var a = {id: 1, name: mike, lastname: ross};
I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
Let's assume that a user votes for some movies in a scale of 1
Let say I've this URL: http://example.com/image-title/987654/ I want to insert download to the part
Let's suppose I have an XML file like this: <?xml version=1.0 encoding=ISO-8859-1?> <MIDIFile> <Event>
Let's say I have the following text: (example) <table> <tr> <td> <span>col1</span> </td> <td>col2</td>

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.