创建一个像Firebug一样的菜单

时间:2012-03-15 11:36:40

标签: firefox-addon xul

我尝试开发我的Firefox插件,我希望有一个类似于Firebug的菜单,一个带图片的菜单按钮。这就是我的意思:

screenshot

我尝试使用CSS设置图像属性,但图片永远不会显示。

任何人都有想法或例子吗?

1 个答案:

答案 0 :(得分:2)

menu-button上的MDN页面有一个应用于叠加层的示例。这是一个可以插入你的叠加层的改编(带有弗拉基米尔的风格建议):

<toolbarbutton type="menu-button" label="" style="list-style-image: url('http://cdn.sstatic.net/stackoverflow/img/favicon.ico')">
  <menupopup>
    <menuitem label="Save This Document"/>
    <menuitem label="Save All" oncommand="alert('Save All'); event.stopPropagation();"/>
  </menupopup>
</toolbarbutton>