zoukankan      html  css  js  c++  java
  • uni-app在iOS中页面下拉出现断层现象处理

    一、现象

    当某一页面的顶部取消默认的原生导航栏,同时顶部的色块和窗口的背景色(backgroundColor)设置不一样时,下拉页面会出现断层,如图:

    1、默认显示为:

    2、下拉时:

    二、解决 (在pages.json中设置)

    1、设置窗口背景,添加"backgroundColor": "#4b7efe",如:

    {
      "path": "pages/dashboard/index",
      "name": "dashboard",
      "style": {
        "backgroundColor": "#4b7efe",
        "navigationStyle": "custom",
        "app-plus": {
          "titleView": false
        },
        "navigationBarTextStyle": "white"
      }
    }

    效果如:

    2、禁止下拉,添加 "bounce": "none" ,如

    {
      "path": "pages/dashboard/index",
      "name": "dashboard",
      "style": {
        "backgroundColor": "#4b7efe",
        "navigationStyle": "custom",
        "app-plus": {
          "titleView": false,
          "bounce": "none"

        },

        "navigationBarTextStyle": "white"
      }
    }

    三、总结:

     在iOS中页面下拉出现断层现象会降低用户的体验性,同时上去也不够美观,因些,对于断层的处理还是很有必要的。

  • 相关阅读:
    在Spring 中如果Girl要Kiss Boy咋办捏?
    对象的序列化
    HibernateHQL
    Struts 动态FORM实现过程
    对struts一点理解总结
    Hibernate Query Language(HQL)。
    Hibernate中Inverse和Cascade
    Spring 中的内部bean 和集合
    设计模式到底离我们有多远
    Aspx页面转静态页面
  • 原文地址:https://www.cnblogs.com/waitingbar/p/14699793.html
Copyright © 2011-2022 走看看