摘要:
原文:http://blog.jobbole.com/68606/ 原文出处: 阿伦孟的博客(@allenm ) 第一篇中讲解了如何让手机来请求我们开发电脑上的源码,做到了这步后,我们可以改完代码立即看到效果,但是对于调试还是远远不够的。这篇文章我们继续讲目前常用的几种 Developer tools。 PC 端的经验 在使用桌面浏览器开发时,几乎每种浏览器都有自己的开发者工具,比如大家常用的 f... 阅读全文
posted @ 2014-05-22 15:44
code_flyer
阅读(599)
评论(0)
推荐(0)
摘要:
A typical mobile-optimized site contains something like the following: The width property controls the size of the viewport. It can be set to a specific number of pixels like width=600 or to the speci... 阅读全文
posted @ 2014-05-22 14:20
code_flyer
阅读(141)
评论(0)
推荐(0)
摘要:
其实在大多数浏览器(IE6, IE7, IE8, Opera 10+, Safari 5+,Chrome)中,都提供了 “mousewheel” 事件。但杯具的是 Firefox 却不支持此事件,不过庆幸 Firefox 中提供了另外一个等同的事件:”DOMMouseScroll” 。 OK,我们现在已经知道了不同浏览器之间实现的差别,兼容代码如下: var addEvent = (functio... 阅读全文
posted @ 2014-05-22 10:11
code_flyer
阅读(1252)
评论(0)
推荐(0)