Could CSS3 animations be utilized for scrolling a window? In jQuery, you would typically use something like:
$(window).animate({scrollTop: '+=200'}, 300, function() { });
Therefore, my inquiry is whether it is feasible to achieve a similar effect using CSS3 and leverage the benefits of hardware-accelerated CSS3 animations. Is it possible to animate a scrollable area with CSS3?