jQuery plugin used for showing items when scrolling down a page
###How to use
Include ED Item Scroll
<script src="js/edItemScroll.min.js"></script>###Create your items
<div class="container">
<div class="item"></div>
<div class="item"></div>
</div>###Initialise the plugin
<script>
$(function(){
$('.container .item').edItemScroll();
});
</script>###Options
| Option | Default | Description |
| effect | opacity | 'opacity' or 'show' - opacity will keep the page height, show will bring them in 1 by 1 |
| speed | 400 | Speed to handle transition |
| callback | Callback function fired after item is shown |