0

将背景图像添加到基于棘轮的应用程序的主体(更准确地说是 .content)的推荐方法是什么?ios 主题对我来说有点简单。给应用程序提供背景图像是不好的做法吗?

4

1 回答 1

0

我这样做了,它在 iOS(甚至 iPad)和 Android 上运行良好。

.content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background-image: url("../img/background-mobile.jpg");
  background-position: center top;
  z-index: 1
}
于 2014-08-29T19:33:03.570 回答