美文网首页
vue 移动端阻止图片长按事件

vue 移动端阻止图片长按事件

作者: 野咪咕 | 来源:发表于2024-08-07 16:14 被阅读0次

    来个透明 div  覆盖到img上

    .imgView{

          width: 7.02rem;

          height: 5rem;

          position: absolute;

          top: 0;

          left: 0;

          z-index: 110;

    //阻止代码

     -webkit-touch-callout: none;

          -webkit-user-select: none;

          -moz-user-select: none;

          -ms-user-select: none;

          user-select: none;

          -webkit-user-drag:none;

        }

        #img {

          z-index: 10;

          width: 6.54rem;

          height: 4.6rem;

    //阻止代码
    -webkit-touch-callout: none;

          -webkit-user-select: none;

          -moz-user-select: none;

          -ms-user-select: none;

          user-select: none;

          -webkit-user-drag:none;

        }

    相关文章

      网友评论

          本文标题:vue 移动端阻止图片长按事件

          本文链接:https://www.haomeiwen.com/subject/xexckjtx.html