4月开始接盘,前人挖坑后人种树系列
目前使用了:
- layui
- jquery-weui
- WeUi
- Echarts.js
- swiper.js
- fastclick.js
- video.js
- bootstrap
- easyui
模板引擎文档 - layui.laytpl----标准实例参考:
//假设你得到了这么一段数据var data = { title: '前端圈', intro: '一群码js的骚年,幻想改变世界,却被世界改变。', list: [ {name: 'bob', city: '杭州'}, {name: 'peter', city: '北京'}, {name: 'faker', city: '杭州'}, {name: 'joking', city: '北京'} ]};var tpl = document.getElementById('tpl').innerHTML; //读取模版//方式一:异步渲染(推荐)laytpl(tpl).render(data, function(render){ document.getElementById('view').innerHTML = render;});//方式二:同步渲染:var render = laytpl(tpl).render(data);document.getElementById('view').innerHTML = render;复制代码
{ { d.title }}
{
{ d.intro }}
- { { # for(var i = 0, len = d.list.length; i < len; i++){ }}
- { { d.list[i].name }} 所在城市:{ { d.list[i].city }} { { # } }}
https://www.layui.com/复制代码
location.search
search 属性是一个可读可写的字符串,可设置或返回当前 URL 的查询部分 (问号 ? 之后的部分)
FastClick
处理移动端 click
事件 300 毫秒延迟, 由 开发,
Github 项目地址: 。
为什么存在延迟?
根据 :
...mobile browsers will wait approximately 300ms from the time that you tap the button to fire the click event. The reason for this is that the browser is waiting to see if you are actually performing a double tap.
从点击屏幕上的元素到触发元素的 click
事件,移动浏览器会有大约 300 毫秒的等待时间。为什么这么设计呢? 因为它想看看你是不是要进行双击(double tap)操作。
兼容性
- Mobile Safari on iOS 3 and upwards
- Chrome on iOS 5 and upwards
- Chrome on Android (ICS)
- Opera Mobile 11.5 and upwards
- Android Browser since Android 2
- PlayBook OS 1 and upwards
不应用 FastClick 的场景
- 桌面浏览器;
- 如果 中设置了
width=device-width
, Android 上的 Chrome 32+ 会禁用 300ms 延时;
复制代码
- viewport meta 标签如果设置了
user-scalable=no
,Android 上的 Chrome(所有版本)都会禁用 300ms 延迟。 - IE10 中,可以使用 css 属性
-ms-touch-action: none
禁止元素双击缩放()。
使用方法
TODO: 修改使用接口
window.addEventListener('load', function() { FastClick.attach(document.body);}, false);复制代码
$(function() { FastClick.attach(document.body);});复制代码
var attachFastClick = require('fastclick');attachFastClick(document.body);复制代码