zoukankan      html  css  js  c++  java
  • IOS 长按默认事件阻止 【坑】

    概述:

    当你触摸并按住触摸目标时候,禁止或显示系统默认菜单。

    -webkit-touch-callout 是一个 不规范的属性(unsupported WebKit property),它没有出现在 CSS 规范草案中。

    在iOS上,当你触摸并按住触摸的目标,比如一个链接,Safari浏览器将显示链接有关的系统默认菜单。这个属性可以让你禁用系统默认菜单。

    说明:

    -webkit-touch-calloutbehavior

    默认值: default

    适用于:链接元素比如新窗口打开,img元素比如保存图像等等

    取值:

    none:
    系统默认菜单被禁用
    default:
    系统默认菜单不被禁用
    • -webkit-touch-callout: default /* displays the callout */
    • -webkit-touch-callout: none /* disables the callout */
    • -webkit-touch-callout: initial
    • -webkit-touch-callout: inherit
    • -webkit-touch-callout: unset

    兼容性:

    • iOS 2.0及更高版本的Safari浏览器可用
    • Android尚不明确
  • 相关阅读:
    小批量随机梯度下降
    查询文档
    自动求梯度
    数据操作
    Hadoop 入门
    Matplotlib 二维图像绘制方法
    Pandas 数据处理基础
    NumPy 数值计算基础课程
    关于 Shell 脚本
    语法分析
  • 原文地址:https://www.cnblogs.com/trend/p/10678993.html
Copyright © 2011-2022 走看看