开发者

Prevent zoom on Blackberry Storm

开发者 https://www.devze.com 2022-12-08 10:34 出处:网络
For web pages that are being viewed in the iPhone, you can add the following meta tag to disable to zoom feature:

For web pages that are being viewed in the iPhone, you can add the following meta tag to disable to zoom feature:

<meta name="viewport" content="width=320; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;"/>

Is there something to do the same for the Blackberry 开发者_JS百科Storm?


BlackBerry® Device Software 4.6 and later supports the meta tag you specified.

<meta name="viewport" content="width=320; initial-scale=1.0;
 maximum-scale=1.0; user-scalable=0;"/>

It also supports the HandheldFriendly tag:

<meta name="HandheldFriendly" content="true" />

I tested both tags on my 9700 and both independently disabled the zoom cursor.

How To Article From Blackberry.com

0

精彩评论

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