移动端点击事件闪屏问题

版权声明:如需转载请联系博主。 https://blog.csdn.net/DemoLw/article/details/81978573

 移动端手指点击屏幕出现闪屏

         在做移动端开发时经常会遇到点击屏幕,屏幕出现蓝光闪屏现象,加入如下这段代码轻松解决闪屏现象。

body {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
}

猜你喜欢

转载自blog.csdn.net/DemoLw/article/details/81978573