有沒有一種方法可以將自舉進度條橫向轉換爲列圖表? 我正在考慮去Google圖表,但使用bootstrap更容易。 下面是一些代碼,以通過StackOverflow質量標準。自舉列圖表
Code goes here.
有沒有一種方法可以將自舉進度條橫向轉換爲列圖表? 我正在考慮去Google圖表,但使用bootstrap更容易。 下面是一些代碼,以通過StackOverflow質量標準。自舉列圖表
Code goes here.
這是一種解決方法。這不是很好,但它很短,它的工作原理。
使用:它非常類似於通常的進度條,但有兩點不同:
CSS:
.progress-vertical {
width: 20px;
height: 100px !important;
position: relative;
}
.progress-vertical .bar {
width: 100% !important;
position: absolute;
bottom: 0;
border-bottom-left-radius: inherit;
border-bottom-right-radius: inherit;
}
實施例:http://jsfiddle.net/mQzj9/251/
編輯1:修正錯誤的示例鏈接。
編輯2:帕夫洛Mykhalov,不需要感謝jQuery代碼了(CSS更新)
編輯3:CSS鏈接過時,更新。
我認爲粘貼不起作用:) –