画布的 jQuery UI 主题
我在使用 jquery ui 构建的网络应用程序中使用画布。我添加了主题滚轮小部件,并希望画布元素可以主题化。所以我面临的问题是,如何以编程方式访问 css 类属性以在绘制画布对象时使用?
这是我尝试过的:
var color = $("<div></div>").addClass("ui-state-default").css("background-color");
I'm using canvas in web app built with jquery ui. I added the theme-roller widget and want the canvas elements to be themeable. So the problem I'm facing is, how do I programatically access css class properties to use while drawing canvas objects?
this is what I tried:
var color = $("<div></div>").addClass("ui-state-default").css("background-color");
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
知道了。需要将元素添加到 DOM 中。
rgb2hex 代码取自: http://haacked.com/存档/2009/12/29/convert-rgb-to-hex.aspx
Got it. The element needed to be added to the DOM.
rgb2hex code taken from: http://haacked.com/archive/2009/12/29/convert-rgb-to-hex.aspx