1、 SVG+JS path等值变化实现CSS3兴叹的图形动画 « 张鑫旭-鑫空间-鑫生活.html http://www.zhangxinxu.com/wordpress/2014/06/svg-path-d-polyline-points-bezier-curves/ 2、 SVG之Animat ...
分类:
其他好文 时间:
2018-01-29 15:42:01
阅读次数:
174
直接上代码,不讲解。 这些网上都可以查的到。 我这里分享的代码,基本是我用得到的,分享到这里,方便以后复制粘贴。 参考网址:https://css-tricks.com/custom-scrollbars-in-webkit/ 效果图: html代码: <!DOCTYPE html> <html l ...
分类:
Web程序 时间:
2018-01-24 15:26:49
阅读次数:
232
webkit overflow scrolling介绍 auto: 普通滚动,当手指从触摸屏上移开,滚动立即停止 touch:滚动回弹效果,当手指从触摸屏上移开,内容会保持一段时间的滚动效果,继续滚动的速度和持续的时间和滚动手势的强烈程度成正比。同时也会创建一个新的堆栈上下文。 兼容写法 如何使用 ...
分类:
移动开发 时间:
2018-01-17 22:28:41
阅读次数:
330
Q:在A项目的a页面嵌入一个iframe,src是B项目的b页面,怎样让a页面的高度跟b页面的高度一样? A:解决跨域方案:增加一个A项目的c页面。 操作步骤: 一,a页面的iframe设置: 获取到当前域名,作为参数设置到src上 二,b页面页脚增加以下代码:通过location拿到a页面的域名, ...
分类:
其他好文 时间:
2018-01-17 16:05:56
阅读次数:
225
1. 布局框架: Bootstrap: http://getbootstrap.com/ Foundation: http://foundation.zurb.com/ Uikit: http://www.getuikit.com/ Web Components:http://css-tricks. ...
分类:
其他好文 时间:
2018-01-17 00:50:02
阅读次数:
186
1、上下拉动滚动条时卡顿、慢 body { -webkit-overflow-scrolling: touch; overflow-scrolling: touch; }2、禁止复制、选中文本Element { -webkit-user-select: none; -moz-user-select: ...
分类:
移动开发 时间:
2018-01-13 00:13:58
阅读次数:
249
@charset "utf 8"; {margin: 0;padding: 0; webkit tap highlight color: transparent; webkit overflow scrolling: touch;} body, div, ul, li, h1, h2, h3, h4 ...
分类:
Web程序 时间:
2018-01-07 00:47:50
阅读次数:
229
1.多for Mobile的HTML5网页内都有快速滚动和回弹的效果 解决办法: -webkit-overflow-scrolling : touch; 使用方法: 2.Fastclick组件 用来解决:(待进一步研究) 使用示例:(vue项目的main.js中) ...
分类:
移动开发 时间:
2018-01-06 20:07:00
阅读次数:
185
无限滚动加载最佳实践 无限滚动(Infinite scrolling),有时候被称为无尽滚动(endless scrolling),这种技术允许用户在大量内容上滚动,眼中看不到结束的地方。这种技术很简单,就是页面往下滚动的时候保持刷新。 这项技术使用户在没有 打断 和 额外交互 的情况下滚动列表 — ...
分类:
其他好文 时间:
2018-01-01 23:34:19
阅读次数:
268
1.1. 页面滚动不流畅(2017-09-25) 现象: 网页竖向滚动或横向滚动不流畅。 解决方案: 为滚动元素添加css样式: -webkit-overflow-scrolling: touch; 1 详见MDN-webkit-overflow-scrolling 1.2. 横向滚动时会上下跳动( ...
分类:
微信 时间:
2017-12-23 14:13:34
阅读次数:
291