在chrome打包应用中自定义标题栏

时间:2014-01-24 10:22:59

标签: javascript html css google-chrome google-chrome-app

有没有办法在Chrome打包应用中自定义标题栏? 我需要添加一些文字并改变背景颜色。

我搜索这样的东西(自定义滚动条):

::-webkit-scrollbar {
width: 15px;
background: #fcfcfc;
    }
::-webkit-scrollbar-thumb {
    background: #a5d0ff;
    -webkit-border-radius: .8ex;
}

1 个答案:

答案 0 :(得分:3)

我认为没有任何CSS选择器以应用程序的标题栏为目标,但您不必在Chrome应用程序中使用系统标题栏。

您可以在创建窗口时在选项对象中指定frame: none - 这将完全删除标题栏,您可以使用HTML和CSS添加自己的内容和样式。