分段进度条(jQuery UI)
我正在尝试将jQuery UI进度条分成几个部分。
有人知道我会怎么做吗?
示例:(2 – 视觉设计:03 http://wiki.jqueryui.com/w/page/12138028/Progressbar )
(我目前正在使用背景图片,但这不实用。)
这是我正在研究的原型……
CSS :
div { margin:10px 10px 0px 10px; height:24px; } div.progressContainer { clear:both; display:block; } label { float:left; width:200px; display:block; } input { float:left; width:100px; text-align:center; display:inline; } input[type=button] { margin-right:1.5px; }
HTML :
jQuery :
var i; // Define a global counter var tmr; // Define timer // Create Function function create() { var max = parseInt($("input#max").val(),10), val = parseInt($("input#val").val(),10), seg = parseInt($("input#seg").val(),10), width = parseInt($("input#width").val(),10), height = parseInt($("input#height").val(),10); $(".progressContainer").empty().height(height).width(width); // Get size for each progressbar var size = max / seg; // Get width for each progressbar // -2 for left/right borders of progressbars // -1 for margin-right // = -3px each of their width to fit exact location width = (width / seg) - 3; for(i=0; i
jsfiddle : http : //jsfiddle.net/BerkerYuceer/QZMMx/