如何在 Firefox 插件的工具栏按钮上显示文本?
我试图在工具栏按钮的图标上显示一个小文本(新消息计数),就像 Chrome 和 Opera 扩展程序在工具栏图标上带有徽章一样。文本不应覆盖整个图标,它应该位于底部,以便用户仍然可以看到图标的主要部分并识别它是什么扩展名。我该怎么做?
您可以在 Chrome 的此示例图像上看到我想要的内容:
我尝试使用说明、 span 和 div 在堆栈元素内,但我无法将它们放置在底部。 Description 和 div 始终在中心显示文本,而 span 将其显示在图标的右侧,使整个按钮更宽。
<toolbarpalette id="BrowserToolbarPalette">
<toolbarbutton class="toolbarbutton-1">
<stack>
<image></image>
<description right="0" bottom="0" value="4"></description>
<!-- <html:div right="0" bottom="0">5</html:div> -->
</stack>
</toolbarbutton>
</toolbarpalette>
I'm trying to display a small text (new messages count) over icon in toolbar button, something like Chrome and Opera extensions have with badge over the toolbar icons. Text should not cover the whole icon, it should be at the bottom so the user can still see main part of the icon and recognize what extension it is. How can I do this?
You can see what I want on this example image from Chrome:
I tried with description, span and div inside stack element but I couldn't get none of them to position at the bottom. Description and div always display text at the center, while span displays it on the right side of the icon making the entire button wider.
<toolbarpalette id="BrowserToolbarPalette">
<toolbarbutton class="toolbarbutton-1">
<stack>
<image></image>
<description right="0" bottom="0" value="4"></description>
<!-- <html:div right="0" bottom="0">5</html:div> -->
</stack>
</toolbarbutton>
</toolbarpalette>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在一级方程式赛车中,我在等待雨停时浪费了一些时间,因此我使用画布进行了这项工作:
更新:当用户从工具栏中删除图标时,以前的方法存在缺陷,更新的方法是更健壮并且代码更少。
XUL
CSS
JavaScript
I had some time to waste while waiting for rain to stop in Formula 1, so I made this work with canvas:
UPDATED: Previous method was flawed when user would remove the icon from the toolbar, updated method is more robust and with less code.
XUL
CSS
JavaScript
我的 html:div 变
体你也可以尝试使用 z-index
看起来如何 http://f3.s.qip.ru /fTUvr2Cj.jpg
XUL
my variant with html:div
P.S. you can also try play with z-index
How it's looks http://f3.s.qip.ru/fTUvr2Cj.jpg
XUL
我刚刚使用了 browser-action-jplib
它在我的简单插件上运行良好>
如果您使用图书馆,您可以AMO-review 遇到一些问题
可以通过 解决问题
I just used the libraries from browser-action-jplib
And it worked fine on my simple addons
If you use the library, you may got some problems with AMO-review
It can be solved by the issue