Different Scroll Speeds - Alternate Method http://codepen.io/anon/pen/zvdKOm
<div data-scroll-speed="3">
$(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)');
});
});
})