是否可以更改 jquery ui 进度条的高度

发布于 2024-11-13 14:27:37 字数 192 浏览 2 评论 0原文

我的 html 表格单元格中有一个进度条。它似乎扩展到表格单元格的宽度,但我想明确指定进度条的高度。

是否可以指定 jQuery 进度条的高度?

    $(this).progressbar({
        value: parseInt($(this).attr("rel"))
    });

I have a progress bar in a html table cell. It seems to expand to the width of the table cell but i want to explicitly specify the height of the progress bar.

Is it possible to specify the height of a jQuery progress bar?

    $(this).progressbar({
        value: parseInt($(this).attr("rel"))
    });

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

七堇年 2024-11-20 14:27:37

当然是。甚至还有一个可调整大小的进度条演示

对你来说太花哨了吗?只需使用 .height()

$('#progressbar').height(400);

演示:http://jsfiddle.net/mattball/N5AVv/

Of course it is. There's even a resizable progress bar demo.

Too fancy for you? Just use .height():

$('#progressbar').height(400);

Demo: http://jsfiddle.net/mattball/N5AVv/

花海 2024-11-20 14:27:37

你还可以使用这个适用于所有 css 属性的函数

$("#progressbar" ).css( "maxWidth", "200%" );

you can also use this function which works for all css attribures

$("#progressbar" ).css( "maxWidth", "200%" );
女皇必胜 2024-11-20 14:27:37

您将需要编辑 jQuery UI CSS 文件。它看起来像

jquery-ui-1.8.17.custom.css

滚动到底部(〜第 564 行),您将看到以下 CSS 属性:

.ui-progressbar (...);

将 HEIGHT 属性值更改为您想要的任何值,保存文件并将其上传到您的服务器。刷新您的浏览器,您就会看到自定义的进度条。

You will need to edit the jQuery UI CSS file. It will look something like

jquery-ui-1.8.17.custom.css

Scroll to the bottom (~line 564) and your will see the following CSS attribute:

.ui-progressbar (...);

change the HEIGHT attribute value to whatever you want, save the file and upload it to your server. Refresh your browser and you have your customized progress bar.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文