在iPhone下,返回 Mozilla/5.0?(iPhone;?CPU?iPhone?OS?5_1?like?Mac?OS?X)?AppleWebKit/534.46?(KHTML,?like?Gecko)?Mobile/9B176?MicroMessenger/4.3.2 在Android下,返回 Mozilla/5.0?(Linux;...
分类:
微信 时间:
2014-11-25 16:41:23
阅读次数:
392
前些日子,看到Herb Sutter在自己的博客中推荐了一篇文章《Why mobile web apps are slow》,在推荐里他这样写道:“I don’t often link to other articles, but this one is worth reading.” 我不经常链接...
分类:
移动开发 时间:
2014-11-25 14:21:45
阅读次数:
208
今天回顾了下移动前端的一些基本东西。1.300ms延迟原因:判断用户是否双击,这个判断时间。解决方法:在touchend事件执行click事件,并且阻止300ms后的真正click事件触发。参考:http://thx.github.io/mobile/300ms-click-delay/http:/...
分类:
其他好文 时间:
2014-11-24 22:12:33
阅读次数:
221
已验证过javascript方法可以使用var deviceAgent = navigator.userAgent.toLowerCase(); 02. var agentID = deviceAgent.match(/(iphone|ipod|ipad|android)/); 03. if(a.....
分类:
移动开发 时间:
2014-11-24 20:37:25
阅读次数:
138
Latency devices(CPU cores) Throughput devices(GPU cores) Use the best match for the job (heterogeneity in mobile SOC CPU: Latency Oriented Design Powe...
分类:
其他好文 时间:
2014-11-23 22:52:21
阅读次数:
252
一些常用的验证脚本不会写js了,只能从网上找一些常用的验证脚本。// 手机号码验证jQuery.validator.addMethod("mobile", function(value, element) { var length = value.length; var mobile = /^(((...
分类:
Web程序 时间:
2014-11-22 16:00:08
阅读次数:
200
今天用jquery mobile 写了一个例子 但是在手机无论如何都不能显示。都是缩放的。百度了下。知道少加了i一个meta属性1.媒体查询下面列了一部分供大家参考(参考自http://www.w3.org/html/ig/zh/wiki/CSS3媒体查询):- width 视口宽度- height...
分类:
其他好文 时间:
2014-11-22 10:36:50
阅读次数:
144
Not so Mobile
Before being an ubiquous communications gadget, a
mobile was just a structure made of strings and wires suspending colourfull things. This kind of mobile is usually found h...
分类:
其他好文 时间:
2014-11-21 23:21:20
阅读次数:
213
关于使用jquery-mobile表单提交遇到的问题
当你使用了jquery-mobile的时候,如果你在前台提交一个了一个form表单,而在后台你处理完业务逻辑之后想要重定向到另一个方法或页面的时候。
切记要在form表单处添加一个data-ajax=“false”。
因为jqu...
分类:
Web程序 时间:
2014-11-21 18:07:55
阅读次数:
153