了解你的工具可以极大的帮助你完成任务。尽管 JavaScript 的调试非常麻烦,但在掌握了技巧 (tricks) 的情况下,你依然可以用尽量少的的时间解决这些错误 (errors) 和问题 (bugs) 。 我们会列出14个你可能不知道的调试技巧, 但是一旦知道了,你就会迫不及待的想在下次需要调试 ...
分类:
编程语言 时间:
2017-11-20 17:46:57
阅读次数:
165
1.ios端的-webkit-overflow-scrolling属性可控制页面滚动效果,设置如下实现惯性滚动和弹性效果: 2.position属性导致的页面滚动不流畅问题: 如上代码所示,当absolute定位的容器内存在relative定位并且高度大于外置容器时,容器的滚动会出现卡顿闪烁现象,解 ...
分类:
移动开发 时间:
2017-11-18 18:47:57
阅读次数:
161
1\Element.getBoundingClientRect()方法返回元素的大小及其相对于视口的位置。 2\通过for in 复制对象。浅复制 3\ 移动端网页滑动不流畅? 滑动内容的父盒子:overflow: hidden; -webkit-overflow-scrolling: touch; ...
分类:
其他好文 时间:
2017-11-16 14:35:53
阅读次数:
118
1. 布局框架: Bootstrap: http://getbootstrap.com/ Foundation: http://foundation.zurb.com/ Uikit: http://www.getuikit.com/ Web Components:http://css-tricks. ...
分类:
其他好文 时间:
2017-11-14 17:17:14
阅读次数:
152
Here's how you memorize things: ? Tell yourself you will do it. Don't try to find tricks or easy ways out of it, just sit down and do it. ? Write what ...
分类:
其他好文 时间:
2017-11-12 12:37:48
阅读次数:
203
<iframe id="iframepage" src="Index.html" name="iframepage" frameborder="0" width="1349" scrolling="no" onload="iFrameHeight()" ></iframe> <a href="abo ...
分类:
其他好文 时间:
2017-11-11 15:26:56
阅读次数:
202
<div class="scroll-wrapper"> <iframe src="地址"></iframe> </div> <style> .scroll-wrapper { position: fixed; right: 0; bottom: 0; left: 0; top: 0; -webki ...
分类:
其他好文 时间:
2017-11-10 01:45:08
阅读次数:
219
怎么在页面中引入外部模板 1.借助于iframe 虽然html5废除了frame,但是依旧保留了iframe,我们仍可以继续使用,iframe有一个frameboder属性,设置属性值为0或者为no,去除iframe的边框。然后将scrolling设为no 2.借助于jq的ajax请求 load() ...
分类:
其他好文 时间:
2017-11-07 16:23:57
阅读次数:
117