See here a little example, a red box will scroll horizontally according to the percentage of the page you scrolled vertically:
$(document).ready(function () {
var $horizontal = $('#horizontal');
$(window).scroll(function () {
var s = $(this).scrollTop(),
d = $(document).height(),
c = $(this).height();
scrollPercent = (s / (d - c));
var position = (scrollPercent * ($(document).width() - $horizontal.width()));
$horizontal.css({
'left': position
});
});
});
Working demo: http://jsfiddle.net/PvVdq/
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…