komned37,
 
$(window).scroll(function() {
    var w = $(".cont7-wrap").offset().top - $(this).width();
    if($(this).scrollTop() < w) return;
    var sst = ($(this).scrollTop() - w ) /20;
    $(".cont7-wrap img").css({
        "transform" : "translate3d(0px, " + sst  + "%, .01px)",
        "-webkit-transform" : "translate3d(0px, " + sst  + "%, .01px)"
    });
});