是否可以更改 jquery ui 进度条的高度
我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
当然是。甚至还有一个可调整大小的进度条演示。
对你来说太花哨了吗?只需使用
.height()
:演示:http://jsfiddle.net/mattball/N5AVv/
Of course it is. There's even a resizable progress bar demo.
Too fancy for you? Just use
.height()
:Demo: http://jsfiddle.net/mattball/N5AVv/
你还可以使用这个适用于所有 css 属性的函数
you can also use this function which works for all css attribures
您将需要编辑 jQuery UI CSS 文件。它看起来像
滚动到底部(〜第 564 行),您将看到以下 CSS 属性:
将 HEIGHT 属性值更改为您想要的任何值,保存文件并将其上传到您的服务器。刷新您的浏览器,您就会看到自定义的进度条。
You will need to edit the jQuery UI CSS file. It will look something like
Scroll to the bottom (~line 564) and your will see the following CSS attribute:
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.