1. 程式人生 > >移動端禁止長按圖片彈出選單和禁止文字選擇

移動端禁止長按圖片彈出選單和禁止文字選擇

禁止長按圖片彈出選單

img{
        pointer-events: none; 
        -webkit-user-select: none;
        -moz-user-select: none;
        -webkit-user-select:none;  
        -o-user-select:none;  
        user-select:none;  
    }

禁止文字選擇

p {
    -webkit-user-select: none;
    -moz-user-select: none;
    -webkit-user
-select:none; -o-user-select:none; user-select:none; }