activeやらhoverの続き

というか現状の結論

iPhoneAndroidで選択UIを作る場合には、
hoverやactiveなどの疑似クラスで選択時カラー変えたりしてると
動作差分で動いたり動かなかったりする(主にAndroidで)
ので、その辺はJSで実装した方が動作差分なくて良いかも。

いやもうちょっと調べるけど




だめぽいのでこんな関数作ってontouchstartにかませた

function tmpCr(cr, target){
var prev = target.style.color;
target.style.color = cr;
setTimeout(function(){target.style.color = prev;}, 200);
}