2014-02-19 98 views
0

jQuery的滾動是的jQuery工具中的一個工具,滾動的圖像列表/視頻Jquery Scrollable,是否可以使用滾動條來定製它?

http://jquerytools.org/demos/scrollable/

但我只是想知道,你們當中有誰試圖用滾動條來定製它。我的意思是,我們要使用jQuery滾動以下頁面

http://www.space.ca/Face-Off.aspx

但我們要保持滾動條在底部,而不是使用左,右箭頭鍵在影音傳送帶滾動。

會這樣嗎?如果你做的JQuery滾動的定製和使用滾動條,請與我分享一些技巧

非常感謝

回答

0

你可以歸檔此使用純CSS:

<div class="scrollMe"> 
    <div>Do what ever you want</div> 
</div> 

然後只是讓確保你的CSS是爲了:

.scrollMe { 
    overflow-x: hidden; 
    overflow-y: scroll; 
    white-space: nowrap; /* this is important for you, this means that you will keep everything in a single line which will make this guy scroll on the y-axis. If you need multiline on the childs you need to set: white-space: nowrap; on the childs */ 
} 

和所有塊級的孩子的需要display: inline-block;

.scrollMe > div { 
    display: inline-block; 
} 
+0

我會試試看。你之前有沒有工作? – doglin

相關問題