Skip to content

abelardogg/lazy-loads-jquery

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

lazy-loads

lazy loads with jQuery

Demo

codepen demo

usage

JS

/** 
* lazyLoad(animationDuration,windowPosition, opacityLevel)
*
* animationDuration: int
* windowPosition: int
* opacityLevel: decimal 
*/

$(document).ready(function(){
		lazyLoad(1000,window.innerHeight, 1);
})

$(document).on('scroll touchmove',function(){
	lazyLoad(1000,window.innerHeight, 1);
});

HTML

<img class="lazy-img" alt="test" data-awake="false" data-img-src="img.jpg">

About

lazy loads with jQuery

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published