I wonder if css3 animations is applicable for window scroll? In jquery for example you use something like:
$(window).animate({scrollTop: '+=200'}, 300, function() { });
So my question is if it’s possible to do something similar with css3, and therefor use the advantages of the hardware accelerated css3 animations? Is it possible to animate a scroll area with css3?
No, they are not applicable to scroll. CSS has no such concept as scroll position.