标签:
去除手机中按钮点击默认有灰色背景:
*{ tap-highlight-color:rbga(0, 0, 0, 0);
-webkit-tap-highlight-color:rgba(0,0,0,0);
}
// 禁止右键和手指长按事件
document.oncontextmenu = new Function(‘event.returnValue=false;‘);
document.onselectstart = new Function(‘event.returnValue=false;‘);
标签:
原文地址:http://www.cnblogs.com/lianfu/p/5407324.html