移動端阻止默認長按選中文本和彈出菜單、點擊陰影


css:
/*阻止默認長按選中文本*/
* {
    /*ios,如果不行可以加一個透明遮罩層*/
    -webkit-touch-callout:none;
    touch-callout:none;

    /*安卓*/
    -webkit-user-select: none;
    user-select: none;
}

 

/*阻止默認點擊出現陰影*/
*{  -webkit-tap-highlight-color: rgba(0,0,0,0);  -webkit-tap-highlight-color:transparent;  }

js:
//阻止默認長按出現菜單
window.ontouchstart = function(e) {
    e.preventDefault();
};

 

 

 
        






免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM