240 发简信
IP属地:新疆
  • 120
    使用Homebrew安装mysql(mac)

    1.安装Homebrew 请参考:MAC安装使用Homebrew 2.查看mysql信息 3.下载mysql 4.配置mysql初始信息 5.mysql的启动、停止、重启 6...

  • 工具类🔧

    https://github.com/kyleduo/TinyPNG4MacFFMpeg:视频相关Tinypng https://github.com/ChenyangGao...

  • 120
    serverless

    前言 最近关于 Serverless 的讨论越来越多。看似与前端关系不大的 Serverless,其实早已和前端有了颇深渊源,并且将掀起新的前端技术变革。此次分享根据个人理解...

  • vue实现摇一摇

    废话不说直接上代码

  • 120
    Uncaught TypeError: Cannot assign to read only property 'exports' of object '#<Object>'

    webpack+vueUncaught TypeError: Cannot assign to read only property 'exports' of object ...

  • 120
    webpack打包 移除alert()

    原文地址:https://stackoverflow.com/questions/41040266/remove-console-logs-with-webpack-ugli...

  • @木叶2018 在移动端中,由于机型的不同,往往在弹窗的时候会出现页面的穿透事件,使得原页面还是能够进行滑动,这是我们不想看到的效果。
    前提
    html,body{
    height: 100%;
    height: 100vh;
    }
    首先,建立一个函数
    ```
    function bodyScroll(event){
    event.preventDefault();
    }
    ```
    之后在触发弹窗的时候禁止页面滚动
    ```
    document.body.addEventListener('touchmove',bodyScroll,false);
    $('body').css({'position':'fixed',"width":"100%"});
    ```
    关闭弹框时开启页面滚动
    ```
    document.body.removeEventListener('touchmove',bodyScroll,false);
    $("body").css({"position":"initial"});

    ```

    vue禁止页面滑动

个人介绍
html css js jquery ajax bootstrap ng vue react