1. 程式人生 > >移動端div點擊有陰影效果

移動端div點擊有陰影效果

不能 去掉 log brush ren web tran select -c

如果想去掉這部分,可以加入下面的代碼

當然這部分也會使用戶不能使用長按復制,所以不建議全局使用。針對某一部分來做可能會好一點。

<style type="text/css">
div,a,img {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select:none;
}
</style>

移動端div點擊有陰影效果