dylanmcleod
10/11/2015 - 11:39 PM

Different Scroll Speeds - Alternate Method http://codepen.io/anon/pen/zvdKOm

Different Scroll Speeds - Alternate Method http://codepen.io/anon/pen/zvdKOm

$(document).ready(function() {
  var boxes = $('[data-scroll-speed]'),
    $window = $(window);
  $window.on('scroll', function() {
    var scrollTop = $window.scrollTop();
    boxes.each(function() {
      var $this = $(this),
        scrollspeed = parseInt($this.data('scroll-speed')),
        val = -scrollTop / scrollspeed;
      $this.css('transform', 'translateY(' + val + 'px)');
    });
  });
})