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 8651925
In Process

The Archive Base Latest Questions

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

I already have a jQuery script I found which changes opacity of my first

  • 0

I already have a jQuery script I found which changes opacity of my first div from 1 to 0 when I scroll down (or when the div reaches the top).

But now I’d like to have the next divs doing the same when they reach the top of the pages to, not all at the same time.

Here are some parts of the code:

That’s the HTML part:

<div id="wrap">

  <section id="logo">
    <img src="images/layout/logo.png"> 
  </section> <!-- logo -->

  <section id="intro">  
    <img src="images/layout/welcome.png">

    <p><h2>Text text text text here here here here</h2></p>
  </section> <!-- intro -->

</div>

Then my jQuery script, currently only working for the logo section.

var divs = $('#logo');
$(window).on('scroll', function() {
   var st = $(this).scrollTop();
   divs.css({ 'opacity' : (1 - st/100) });
});

To be perfectly clear of what’s going on, I leave you the link to my current page:

http://www.hyker.be/opacity

I simply would like that the “come closer” div do the same that the “logo” one, etc.

  • 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:11:16+00:00Added an answer on June 12, 2026 at 2:11 pm

    I would add them all at the beginning and only fade them if they are in range.

    var divs = $('#logo, #intro');
    var range = 100;
    $(window).on('scroll', function() {
       var st = $(this).scrollTop();
       divs.each(function() {
          var offset = $(this).offset().top;
          $(this).css({ 'opacity' : (1 - ((st - offset + range) / range)) });
       });
    });
    

    UPDATE

    This seems to work better. Fades based on the center of the object instead of the top.

    var divs = $('#logo, #intro');
    var range = 100;
    $(window).on('scroll', function() {
       var st = $(this).scrollTop();
       divs.each(function() {
          var offset = $(this).offset().top;
          var height = $(this).outerHeight();
          offset = offset + height/2;
          $(this).css({ 'opacity' : (1 - ((st - offset + range) / range)) });
       });
    });
    

    Resources

    • http://api.jquery.com/offset/
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am a big fan of jquery and PHP. I have already found a
I already have the following for the JS files: <script type=text/javascript src=http://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js></script> <script type=text/javascript>!window.jQuery
I have a jQuery function already to perform the task I need but is
I have the following Problem: I have already opened a JQuery dialog and I
i already have a project with TreeNode class which creates a hierachy of nodes
I already have code which lazy loads scripts on request. My issue now is
I already have Java code to display and process data from a database. I
I have a jQuery-Script to accomplish the following tasks: if a gridview in my
I have an IP managing script with ranges and jquery search to check if
I'm developing some script, which developers will include on their pages. I need jQuery

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.