2015-11-05 96 views
2

我想创建一个类似于http://seller.flipkart.com的网页。我想首先从上到下滚动我的页面,然后从左到右使用滚动按钮和背景绘制。你能告诉我如何做到这一点,我应该学习哪种语言?页面从左向右滚动

 $('html, body').animate({scrollLeft: -$(sectionName).offset().left}, "slow"); 
    $('html, body').animate({scrollTop: $(sectionName).offset().top}, "slow"); 
+1

'scrollLeft:document.width - $(sectionName).offset()。left' – Jai

回答