文件名称:Steady.js.zip
文件大小:6KB
文件格式:JS
更新时间:2022-08-04 03:13:20
开源项目
Steady.js 可实现无闪烁的 onscroll 事件处理,而不会有性能方面的损失。 基本使用方法: <html> <head> <title>Hello world!</title> </head> <body> <!-- some HTML things here --> [removed][removed] [removed] var s = new Steady({ conditions: { "width": 400px, "scrollX": 0, "max-bottom": 200px }, throttle: 100, handler: fn }); // you cann conditions on the fly! s.addCondition('scrollX', 0); function fn(values, done) { var xhr = new XMLHttpRequest(); xhr.open('GET', 'imgs.html'); xhr.onreadystatechange = function() { if ( xhr.readyState == 4 ) { document.body[removed] = xhr.response; // telling Steady that we're done processing! done(); } }; xhr.send(); } [removed] </body> </html> 标签:Steady
【文件预览】:
steady.js-master
----.gitignore(27B)
----README.md(420B)
----tests()
--------test.html(771B)
--------test.js(4KB)
----bower.json(427B)
----package.json(862B)
----LICENSE.txt(1KB)
----.editorconfig(90B)
----gulpfile.js(1KB)
----Steady.js(5KB)