在ios手机上 当蒙层上有滑动效果当到底部 或 顶部时 整个网页滑动

场景: 蒙层上可以滑动 蒙层下的页面没有滚动条(即默认不会出现滑动)

问题描述:在ios手机上 当蒙层上有滑动效果当到底部 或 顶部时 整个网页滑动

解决方法分析:

  1. 蒙层定位用"absolute "不要用"fixed "不然当整体页面滑动时会发现蒙层不会动(和安卓对比 安卓上页面整体滑动时蒙层会随页面一起滑动)
  2. 蒙层上的区域分为:(做到触到蒙层就隐藏)
    a: 蒙层灰色区域
    (1)点击时要隐藏 (2)touchstart时也要隐藏
    b: 白色区之不可以滚动区(一般是标题)就禁止默认事件 即滑动这里时不让页面整体滚动 c: 白色区之可以滚动区 当滚动区滚到顶部时,手再触屏时,把把div的滚动位置向下调一点点,这样系统就会以为还没有滚到头,就会继续滑动,然后是div内的阻尼滑动,整个网页不会滑动。滚动到底部时,再触屏时,同理向上调一点就可以了
    c: 白色区之可以滚动区 当滚动区滚到顶部时,手再触屏时,把把div的滚动位置向下调一点点,这样系统就会以为还没有滚到头,就会继续滑动,然后是div内的阻尼滑动,整个网页不会滑动。滚动到底部时,再触屏时,同理向上调一点就可以了;

参考链接:https://www.imooc.com/article/254122?block_id=tuijian_wz

解决代码:

### html部分:
     <div class="main">
        <!-- 班级列表蒙层 -->
        <div v-show="isShowClassList" @click.stop="hideClassList($event)" class="action-sheet-mask">
            <div class="action-sheet">
                <div class="title">
                    <p>请选择所在班级<span class="icon-close"></span></p>
                </div>
                <div class="action-sheet-list-wrapper">
                    <ul v-if="formInfo" class="action-sheet-list">
                        <li v-for="(item, i) in formInfo.class.field_value" :key="i" @click.stop="cutoverClass(i,item)" :class="curIndex === i ? 'active': ''" class="action-sheet-item">
                            <p class="text">{{item}}<span class="icon"></span></p>
                        </li>
                    </ul>
                </div>
        </div>
    </div>
</div>
### j部分:
mounted () {
    // ios手机上 滑动到最顶部或者最底部时 整体页面跟随滑动的问题
    var overscroll = function(el) {
        el.addEventListener('touchstart', function() {
            var top = el.scrollTop,
            totalScroll = el.scrollHeight,
            currentScroll = top + el.offsetHeight

            if (top === 0) {
                el.scrollTop = 1
            } else if(currentScroll === totalScroll) {
                el.scrollTop = top - 1
            }
        })
    }
    overscroll(document.querySelector('.action-sheet-list-wrapper'))
    // 触到蒙层就隐藏
    let self = this
    document.querySelector('.action-sheet-mask').addEventListener('touchstart', function(e) {
        if (e.target.className === 'action-sheet-mask' || e.target.className === 'icon-close') {
            self.isShowClassList = false
        }
        if (e.target.className !== 'action-sheet-list-wrapper' && e.target.className !== 'action-sheet-list' && e.target.className !== 'action-sheet-item' && e.target.className !== 'text') {
            e.preventDefault()
        }
    })
},
methods: {
    
    // 点击显示班级列表
    showClassList () {
        this.isShowClassList = true
    },
    // 点击隐藏班级列表
    hideClassList (e) {
        if (e.target.className === 'action-sheet-mask' || e.target.className === 'icon-close') {
            this.isShowClassList = false
        }
    },
    // 点击切换班级
    cutoverClass (i, data) {
        this.curIndex = i
        this.className = datathis.isShowClassList = false
    }
}
### CSS部分 :
    
.main{
    max-width: 7.5rem;
    margin:0 auto;
    width: 100%;
    height: auto;
    min-height: 100vh;
    background-color: #FFCD63;
    background-image: url('../../assets/img/IMG_Sign up@3x.png');
    background-size: 100% 3.72rem;
    background-position: center 0.6rem;
    background-repeat: no-repeat;
    position: relative;
 }
 
/* 班级列表蒙层 */
.action-sheet-mask{
    max-width: 7.5rem;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -3.75rem;
    background: rgba(0,0,0,0.4);
    z-index: 101;
}
.action-sheet{
    width:7.1rem;
    background: #fff;
    position: absolute;
    left: 50%;
    margin-left: -3.55rem;
    bottom: 0.2rem;
    border-radius: 0.2rem;
    padding:0 0.3rem 0;
    box-sizing: border-box;
}
.action-sheet .title{
    width: 100%;
}
.action-sheet .title p{
    width: 100%;
    height: 1rem;
    line-height: 1rem;
    text-align: center;
    font-size: 0.3rem;
    color: #333;
    position: relative;
    margin-bottom:0;
}
.action-sheet .title .icon-close{
    width: 0.38rem;
    height: 0.38rem;
    background-image: url('../../assets/img/icon_delete@3x.png');
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top:0.31rem;
    right: -0.09rem;
}
.action-sheet-list-wrapper {
    width: 100%;
    max-height: 5.05rem;
    overflow-y:scroll;
    -webkit-overflow-scrolling: touch;
}
.action-sheet-list-wrapper::-webkit-scrollbar{
    display: none;
}
.action-sheet-list{
    width:100%;
    margin:0;
}
.action-sheet-item{
    width: 100%;
    border-top:0.01rem solid #deddde;
    box-sizing: border-box;
}
.action-sheet-item>p{
    height:1.01rem;
    line-height: 1rem;
    font-size: 0.32rem;
    color: #333;
    font-weight: 700;
    position: relative;
    margin-bottom:0;
}
.action-sheet-item>p .icon{
    width: 0.38rem;
    height: 0.38rem;
    background-image: url('../../assets/img/icon_choose@3x.png');
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top:50%;
    right: 0;
    margin-top: -0.19rem;
    display: none;
}
.action-sheet-item.active>p .icon{
    display: block;
}
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,128评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,316评论 3 388
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,737评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,283评论 1 287
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,384评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,458评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,467评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,251评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,688评论 1 306
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,980评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,155评论 1 342
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,818评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,492评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,142评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,382评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,020评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,044评论 2 352

推荐阅读更多精彩内容

  • 问答题47 /72 常见浏览器兼容性问题与解决方案? 参考答案 (1)浏览器兼容问题一:不同浏览器的标签默认的外补...
    _Yfling阅读 13,747评论 1 92
  • 第一部分 HTML&CSS整理答案 1. 什么是HTML5? 答:HTML5是最新的HTML标准。 注意:讲述HT...
    kismetajun阅读 27,460评论 1 45
  • 发现 关注 消息 iOS 第三方库、插件、知名博客总结 作者大灰狼的小绵羊哥哥关注 2017.06.26 09:4...
    肇东周阅读 12,079评论 4 62
  • 我想您一定想不到我在这段时间的经历有多么奇特。我亲爱的哥哥—— 柯星舟打开信件,映入眼帘的就是自己的开门弟子不伦不...
    俄狄神钠阅读 133评论 0 0
  • 2016年11月8日 星期一 天气晴 今天我们学习了radiobutton的用法和radiogroup的用法。 ...
    我是非洲人阅读 357评论 0 1