开发者

-webkit-tap-highlight-color in Windows Phone?

Is there an equivalent to -webkit-tap-highlight-color for Windows Phone 7 (Mang开发者_运维百科o)? I'm writing a mobile site, and I'd like it to display the same way across all browsers, if possible.

I've tried tap-highlight-color and -ms-tap-highlight-color, neither worked.


I know this is late to answer, but I have an update. The answer is still no, unfortunately. However, IE10 on WP8 allows:

<meta name="msapplication-tap-highlight" content="no"/>

You can only disable the tap color, and it seems that you cannot customize the color.


Unfortunately, there is no such equivalent Microsoft propritary extension at this time for WP7. If you take a look at the Microsoft list of attributes, you will see an absence of anything even touch related.

On the JavaScript side, the IE blog just about that IE 10 will specify the pressure of a touch. This might be the closest that we can get for the time being. For now, if you really wanted to do it with JavaScript you would have to keep track of the time that the mouse was down (what a pain). The events you will need are MouseDown, MouseMove, and MouseUp.

Recommendation: If I were you I would go with progressive enhancement and not support it for WP7 at this time. If it's a critical part of your app though, you may have to play around a bit with JavaScript to see if you can get something workable.


You can disable tap highlight in IE 10 on specific element with CSS

-ms-touch-action: none;


In windows phone 8.1 the meta tag did not worked (PhoneGap App).

  <meta name="msapplication-tap-highlight" content="no"/>

But this in the CSS file worked for me

body{
  -ms-user-select: none
}


The (-webkit-)tap-highlight property is only supported in Safari on iOS (iPhone/iPad) and other browsers that use webkit.

If you're really desperate to display the tap highlight color you could use CSS' :focus selector which is the closest solution to your problem or try to achieve the same behavior with javascript (jQuery).

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜