摘要:
在这里只会提到Google的解决方案,日后再补充百度的解决方案 我们经常使用的单页都是#!来做应用的前端路由,因为这个在多个版本浏览器上有很好的兼容性 当Google发现URL里有#!符号,Google会把 #! 替换成 ?_escaped_fragment_= ,然后继续抓取链接的内容。 例如ex 阅读全文
摘要:
for(i in document.images)document.images[i].ondragstart=imgdragstart; function imgdragstart(){return false;} 阅读全文
摘要:
this.getClass().getResource(“/”).getPath()使用者方法查看文件在服务器上的地址,但是地址中的空格会被转化为%20。解决办法1:URI uri = new URI(url.toString());FileInputStream fis = new FileInp... 阅读全文
摘要:
从上到下的线性渐变:#grad { background: -webkit-linear-gradient(red, blue); /* Safari 5.1 - 6.0 */ background: -o-linear-gradient(red, blue); /* Opera 11.1 - 12... 阅读全文
摘要:
suface js判断css动画是否结束 一旦动画或变换结束,回调函数就会触发。不再需要大型类库支持。 http://www.webhek.com/css-animation-callback/ 来源于web骇客css3动画过度慢慢隐藏(transition-duration:3s;... 阅读全文
摘要:
http://blog.163.com/rex_blog/blog/static/1944801012013102743014369/所有被测试的浏览器都支持touchstart、touchend和touchmove事件。 阅读全文
摘要:
代码编写:(写的格式有点差,凑合看吧,但是功能是实现了的) 无标题 阅读全文
摘要:
代码编写:$.fn.longPress = function(fn) { vartimeout=undefined; var $this = this; for(var i = 0;i<$this.length;i++){ $this[i].addEventListener('touchstart... 阅读全文