Erwin van Ekeren
Erwin van Ekeren

Reputation: 730

Change bg color on scroll

I have this javascript in combination with colors.js that changes the background color on scroll. This works great, the only thing that I want to do is that the fade is already done as soon as the next div shows up.

Example with my codepen; when you start scrolling the background slowly fades from white to black, but I want it to be fully black already when the section #two shows up on the bottom.

Codepen: https://codepen.io/pixelarchitect/pen/PxBmXB

var sections = [];
var sectionsYStart = [];
var activeSection = 0;

var pageInit = function() {
  sections = [];
  sectionsYStart = [];
  $("section").each(function(i, v) {
    sections[i] = v;
    sectionsYStart[i] = $(v).offset().top;
  });
};

var ChangeColorOnScroll = function() {
  var scroll = $(window).scrollTop();
  scrollColors(scroll, $("body"), ["#FFFFFF", "#000000"]);
}

var scrollColors = function(scroll, el, colors) {
  // which of all the sections, are we in between?
  var z = 0,
    seclen = sections.length;
  for (var i = 0; i < seclen; i++) {
    if (scroll > sectionsYStart[i]) {
      z = i;
    }
  }
  activeSection = z;

  scroll_pos = scroll;
  var animation_begin_pos = sectionsYStart[z]; //where you want the animation to begin
  var animation_end_pos = sectionsYStart[z + 1]; //where you want the animation to stop
  var beginning_color = $.Color(colors[z]);
  var ending_color = $.Color(colors[z + 1]);

  if (scroll_pos >= animation_begin_pos && scroll_pos <= animation_end_pos) {
    var percentScrolled = scroll_pos / (animation_end_pos - animation_begin_pos);
    if (percentScrolled > 1) {
      percentScrolled = percentScrolled - z;
    }
    var newRed = beginning_color.red() + ((ending_color.red() - beginning_color.red()) * percentScrolled);
    var newGreen = beginning_color.green() + ((ending_color.green() - beginning_color.green()) * percentScrolled);
    var newBlue = beginning_color.blue() + ((ending_color.blue() - beginning_color.blue()) * percentScrolled);

    var newAlpha = beginning_color.alpha() + ((ending_color.alpha() - beginning_color.alpha()) * percentScrolled);

var newColor = new $.Color(newRed, newGreen, newBlue, newAlpha);
el.animate({
  backgroundColor: newColor
}, 0);
  } else if (scroll_pos > animation_end_pos) {
    el.animate({
      backgroundColor: ending_color
    }, 0);
  } else if (scroll_pos < animation_begin_pos) {
    el.animate({
      backgroundColor: beginning_color
    }, 0);
  } else {}

};

$(function() {
  pageInit();
  $(document).scroll(ChangeColorOnScroll);
  $(window).resize(pageInit);
});

If someone can also help me with changing the color from the text while scrolling than that would be a nice extra feature

Upvotes: 0

Views: 117

Answers (1)

Dylan Anlezark
Dylan Anlezark

Reputation: 1267

You can add an offset to your animation_end_pos to accomplish what you want

scroll_pos = scroll;
  var animation_begin_pos = sectionsYStart[z]; //where you want the 
animation to begin
  var animation_end_pos = sectionsYStart[z + 1] - $(window).height() - 50; 
//where you want the animation to stop
  console.log($(window).height() - 50);

Upvotes: 1

Related Questions