ionic2背景图片没有显示

时间:2017-07-06 02:27:51

标签: ionic2

我想在ionic2的页面中设置背景图片,

  <style type="text/css">
    ion-content {
      background: url(../../img/background.jpg) no-repeat center center fixed;
    }
  </style>
  <ion-content  padding>
      <h2>Welcome to Ionic!</h2>
  </ion-content>

但它没有显示在设备中。 为什么呢?

5 个答案:

答案 0 :(得分:1)

您应该将背景添加到.scroll-content,如下所示:

<style type="text/css">
    .scroll-content {
      background: url(../../img/background.jpg) no-repeat center center fixed;
    }
  </style>
  <ion-content  padding>
      <h2>Welcome to Ionic!</h2>
  </ion-content>

答案 1 :(得分:0)

ion-content添加到您的css:

  background-size: cover;
  background-color: transparent;

答案 2 :(得分:0)

试试这个

.content-md {
  background: url("../../img/background.jpg") no-repeat;
}

答案 3 :(得分:0)

将图片放入assets / img文件夹。 然后在你的css中使用以下代码:

const

这是因为Ionic将搜索相对于index.html的图像。

答案 4 :(得分:0)

我知道它已经很少了,但你可以这样做

foreach(Control c in flowLayoutPanel1.Items)