我試圖重新創建我在網上看到的效果:example。所以有兩列一個滾動和一個滾動。見圖片:分屏滾動網站無法正常工作
現在我不是最好的,但編碼器我來過了這個:
var update = function() {
$('.right').height($(window).height());
$('.right .content').height($(window).height() * 5);
$('.left .content').height($(window).height() * 5);
$('.col, .content').width($(window).width()/2);
$('.right').scrollTop((
$('.right .content').height() - $(window).height()) * (
1 - $(window).scrollTop()/($('.left .content').height() - $(window).height())));
};
$(document).ready(function() {
update();
});
$(window).scroll(function() {
update();
});
$(window).resize(function() {
update();
});
見JSfiddle,它似乎是工作,但如果我嘗試添加100百分比到每邊,它停止工作的一些奇怪的原因。右側只是不再滾動,如果我添加這些div ..
任何人都可以弄清楚什麼是錯的?或者有沒有人有更好的例子來說明如何實現這一目標?
在此先感謝
你可以張貼不工作的jsfiddle的例子嗎?我設置了100%的寬度divs,一切都很好 – spring
有一個插件創建類似的效果,但與自動滾動,而不是正常的:[multiscroll.js](http://alvarotrigo.com/multiScroll/) – Alvaro