Ionic 中的透明导航栏

Transparent navigation bar in Ionic

我的 Ionic 应用程序有一个透明的详细视图 header。将 CSS class "bar-clear" 应用到我的元素在桌面浏览器中做得很好,当 运行 Android 上的应用程序时(见结果 here).

但是当 运行 在 iOS 8 上时,header 是白色且不透明的(参见 here)。
知道为什么吗?

我做了一些研究,人们通过将 bar-light 设置为 header 栏然后进行以下更改使其正常工作:

    .bar.bar-light {
  background-color: rgba(255,255,255,.66) !important; /* or transparent, or background:none */
}
.scroll-content {
  overflow: visible !important;
}

看看这个游乐场:http://play.ionic.io/app/3cbf53eff565

建好后能用吗?不确定,但试试看,让我知道。