├── README.md ├── animate.html ├── css3-animate.html ├── js ├── bezier.js └── 遍历多叉树(递归、非递归) │ └── tree-iterator.js ├── timetag.js ├── util.js ├── utils-page ├── css │ └── index.css ├── index.html └── js │ ├── index.js │ ├── jquery-2.1.4.js │ ├── jquery.qrcode.min.js │ └── pic-preview-base64-jq.js ├── webApp-layout ├── index.html └── sprite.png └── 第三方工具 ├── mobiscroll.more ├── css │ ├── icons_mobiscroll.eot │ ├── icons_mobiscroll.svg │ ├── icons_mobiscroll.ttf │ ├── icons_mobiscroll.woff │ └── mobiscroll.custom-2.17.0.min.css ├── index.html ├── js │ └── mobiscroll.custom-2.17.0.min.more.js ├── license │ └── EULA.pdf └── readme.txt └── mobiscroll.trial ├── css ├── icons_mobiscroll.eot ├── icons_mobiscroll.svg ├── icons_mobiscroll.ttf ├── icons_mobiscroll.woff └── mobiscroll.custom-2.17.0.min.css ├── index.html ├── js └── mobiscroll.custom-2.17.0.min.js ├── license └── EULA.pdf └── readme.txt /README.md: -------------------------------------------------------------------------------- 1 | # notes 2 | 3 | 日常学习的一些有用小笔记 4 | 5 | ## 博客 6 | * [剖析Vue原理&实现双向绑定MVVM](https://segmentfault.com/a/1190000006599500) 7 | * [微信小游戏跳一跳Node版本 - 半自动版](https://github.com/DMQ/jumpgame-auto/blob/master/README.md) 8 | * [移动端web app自适应布局探索与总结](http://segmentfault.com/a/1190000003931773) 9 | * [web app遇到的一些坑及小技能(持续更新...)](http://segmentfault.com/a/1190000003932970) 10 | * [css编码规范](http://segmentfault.com/a/1190000003992270) 11 | * [遍历多叉树(递归、非递归广度优先、深度优先)](https://segmentfault.com/a/1190000003004435) 12 | 13 | ## 网站收录 14 | * [基于webpack的在线调试(vue)工具 -- webpackbin](http://www.webpackbin.com/EJsur-jpl) 15 | * [基于bootstrap的拖拉生成页面工具](https://bootstrapstudio.io/) 16 | * [占位图利器 -- placehold](https://placehold.it/) 17 | * [js编译成app利器 -- fuse](https://www.fusetools.com/); [相关文章](http://www.tuicool.com/articles/NfyuY3i) 18 | * [设置网站图标favico.js](http://lab.ejci.net/favico.js/) 19 | * [短链服务](http://www.ft12.com/) 20 | 21 | 22 | 短链接口(百度api): 23 | ```javascript 24 | $.ajax({ 25 | headers: { 26 | 'apikey': '0bcae0071cafdafadd3a85acd22493af' 27 | }, 28 | type: 'GET', 29 | url: '//apis.baidu.com/3023/shorturl/shorten?url_long=' + encodeURIComponent('http://baidu.com') 30 | }) 31 | ``` 32 | -------------------------------------------------------------------------------- /animate.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 |bezierCustom
58 | 59 | 60 |linear
63 | 64 |bezierLinear
67 | 68 |bezierEase
71 | 72 |bezierEaseIn
75 | 76 |quad
79 | 80 |bezierEaseOut
83 | 84 |quadOut
87 | 88 |bezierEaseInOut
91 | 92 |quadInOut
95 | 96 |