無論如何要控制div標籤的滾動條的樣式嗎?我遇到了IE7和FireFox 3.5.2之間的一些對比問題。任何幫助將不勝感激!Div滾動條 - 任何樣式的方式?
回答
使用javascript可以設置滾動條的樣式。在IE和FF中都可以正常工作。下面
檢查鏈接
From Twinhelix , Example 2 , Example 3 [或]你可以通過點擊下面的鏈接 30 scrolling techniques
不,你不能在Firefox,Safari等等你可以在Internet Explorer中。有幾個腳本可以讓你創建一個滾動條。
您可以在較新的webkit。 http://webkit.org/blog/363/styling-scrollbars/ – 2009-08-11 10:36:24
This one does well its scrolling job找到一些30型渦旋式風格類型。這很容易理解,只有幾行代碼,寫得很好,而且完全可讀。
還有iScroll項目,它允許您設置滾動條的樣式並使其與觸摸設備配合使用。 http://cubiq.org/iscroll-4
查看網頁我發現了一些簡單的樣式滾動條的方法。
這是這個傢伙! http://almaer.com/blog/creating-custom-scrollbars-with-css-how-css-isnt-great-for-every-task
在這裏我的實現! https://dl.dropbox.com/u/1471066/cloudBI/cssScrollbars.png
/* Turn on a 13x13 scrollbar */
::-webkit-scrollbar {
width: 10px;
height: 13px;
}
::-webkit-scrollbar-button:vertical {
background-color: silver;
border: 1px solid gray;
}
/* Turn on single button up on top, and down on bottom */
::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
display: block;
}
/* Turn off the down area up on top, and up area on bottom */
::-webkit-scrollbar-button:vertical:start:increment,
::-webkit-scrollbar-button:vertical:end:decrement {
display: none;
}
/* Place The scroll down button at the bottom */
::-webkit-scrollbar-button:vertical:increment {
display: none;
}
/* Place The scroll up button at the up */
::-webkit-scrollbar-button:vertical:decrement {
display: none;
}
/* Place The scroll down button at the bottom */
::-webkit-scrollbar-button:horizontal:increment {
display: none;
}
/* Place The scroll up button at the up */
::-webkit-scrollbar-button:horizontal:decrement {
display: none;
}
::-webkit-scrollbar-track:vertical {
background-color: blue;
border: 1px dashed pink;
}
/* Top area above thumb and below up button */
::-webkit-scrollbar-track-piece:vertical:start {
border: 0px;
}
/* Bottom area below thumb and down button */
::-webkit-scrollbar-track-piece:vertical:end {
border: 0px;
}
/* Track below and above */
::-webkit-scrollbar-track-piece {
background-color: silver;
}
/* The thumb itself */
::-webkit-scrollbar-thumb:vertical {
height: 50px;
background-color: gray;
}
/* The thumb itself */
::-webkit-scrollbar-thumb:horizontal {
height: 50px;
background-color: gray;
}
/* Corner */
::-webkit-scrollbar-corner:vertical {
background-color: black;
}
/* Resizer */
::-webkit-scrollbar-resizer:vertical {
background-color: gray;
}
- 1. div上的CSS3滾動條樣式
- 2. 滾動條樣式
- 3. TextView的滾動條樣式
- 4. WPF的滾動條樣式
- 5. 樣式滾動條css colorbox
- 6. ListView滾動條樣式
- 7. 更改滾動條樣式
- 8. webkit css滾動條樣式
- 9. 如何更改滾動條樣式
- 10. Qt的垂直滾動條的樣式
- 11. Webkit滾動條動態樣式
- 12. 如何設置水平滾動列表的滾動條樣式?
- 13. 如何以編程方式滾動具有自己的滾動條的div?
- 14. 僅更改iframe的滾動條樣式
- 15. 數據表上的滾動條樣式
- 16. 滾動條的樣式不起作用
- 17. C# - 帶滾動條樣式的ProgressBar
- 18. WPF自定義滾動條 - Zune樣式滾動條
- 19. 如何格式化textarea上的滾動條樣式?
- 20. 任何方式來在div中滾動ipad?
- 21. 如何樣式滾動條相同即滾動
- 22. 更改iframe滾動條樣式
- 23. Wpf滾動條樣式三角形
- 24. JScrollpane不會樣式滾動條
- 25. 樣式溢出-y滾動條
- 26. CSS滾動條樣式跨瀏覽器
- 27. CSS,HTML或Jquery - 滾動條樣式
- 28. Flex滾動條樣式問題
- 29. [WPF]:樣式化滾動條,但ListView的滾動不受風格
- 30. 如何樣式QSpliter句柄和滾動條像這樣?
這裏是我的最愛 - http://manos.malihu.gr/jquery-custom-content-scroller – 2012-02-13 07:05:04