移動端ios點擊input/button時的【陰影/閃爍】解決方法

1、點擊元素後閃爍、有半透明背景

給元素添加:

/**去除點擊input 陰影**/
input{
	-webkit-appearance: none;
}

/**去除點擊按鈕 陰影**/
a,button,input {
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
	-webkit-user-select: none;
	outline: 0;
}
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章