iscroll中文官网
https://www.jq22.com/demo/iscroll_V4.2.5201702062041/
https://www.jq22.com/demo/jQuery-iscroll20160405/
https://www.jq22.com/demo/onload-2201704141101/?_rf=0.9192485968497308
https://www.cnblogs.com/yuanhui69/p/3489998.html
https://www.cnblogs.com/yuanhui69/p/3488682.html
https://www.cnblogs.com/zhaogaojian/p/9482963.html
jsPlumb开发入门教程(实现html5拖拽连线)
https://www.cnblogs.com/ysx215/p/7419318.html
楼层
https://www.cnblogs.com/echolun/p/11374592.html
https://www.cnblogs.com/zcynine/p/5158074.html
js打字效果
实现打字效果的插件 typed.js
数字滚动
https://www.jq22.com/demo/jqueryCountup20161120/
countUp.js 让数据跳动起来
https://ext.dcloud.net.cn/plugin?id=444
https://www.maigoo.com/tuku/513984.html
https://www.nhooo.com/note/qa3qxk.html
var time = new Date();
time.getYear(); //获取当前年份
time.getFullYear(); //获取完整的年份(4位,1970-???)
time.getMonth(); //获取当前月份(0-11,0代表1月)
time.getDate(); //获取当前日(1-31)
time.getDay(); //获取当前星期X(0-6,0代表星期天)
time.getTime(); //获取当前时间(从1970.1.1开始的毫秒数)
time.getHours(); //获取当前小时数(0-23)
time.getMinutes(); //获取当前分钟数(0-59)
time.getSeconds(); //获取当前秒数(0-59)
time.getMilliseconds(); //获取当前毫秒数(0-999)
time.toLocaleDateString(); //获取当前日期
var mytime=time.toLocaleTimeString(); //获取当前时间
time.toLocaleString( ); //获取日期与时间
//获取当天日期
function getTotay(){
var time = new Date();
var year = time.getFullYear();
var month = time.getMonth()+1;
var date = time.getDate();
return year+'-'+add0(month)+'-'+add0(date);
}
//修改月、天的格式,保持两位数显示
function add0(m){
return m<10?'0'+m:m
}
var today = getTotay();
Pinterest
jQuery瀑布流插件——jQuery.Waterfall
$('#id').waterfall({
itemClass: 'wf_item', // 砖块类名
imgClass: 'thumb_img', // 图片类名
colWidth: 235, // 列宽
marginLeft: 15, // 每列的左间宽
marginTop: 15, // 每列的上间宽
perNum: 'auto', // 每次下拉时显示多少个(int)(默认是列数)
isAnimation: true, // 是否使用动画效果
ajaxTimes: 'infinite', // 限制加载的次数(int) 字符串'infinite'表示无限加载
url: null, // 数据来源(ajax加载,返回json格式),传入了ajaxFunc参数,此参数将无效
ajaxFunc: null, // 自定义异步函数, 第一个参数为成功回调函数,第二个参数为失败回调函数
// 当执行成功回调函数时,传入返回的JSON数据作为参数
createHtml: null // 自定义生成html字符串函数,参数为一个信息集合,返回一个html字符串
});
原生JS实现打字效果:
给 Element.prototype 设置了一个函数对象
https://www.yisu.com/zixun/156536.html
encodeURI()和encodeURIComponent() 区别
微信第三方登录 -- (PC端+移动端)
https://www.cnblogs.com/2019gdiceboy/p/11384312.html
https://miaosha.jd.com/
图片瀑布插件
masonry(图片瀑布流插件)
document.getElementById(
innerHTML