$(function(){

	 hh = $('.img-area').height();
	 wh = $(window).height();
	 $('.img-area').css('top',wh-hh);/*设置元素顶部偏移值*/

    $(window).scroll(function(e){//监听滚轮滚动

        s = $(window).scrollTop();//获取窗口滚轮滚动值
        $('.img-area').css('top',wh-hh+s);//窗口高度-元素高度+滚轮滚动值
    })
});

function hideImg(){

	$(".img-area").css("display" , "none");
}