마우스 움직일 때 배경이 미세하게..
설명은 아래링크
http://www.egstudio.biz/easy-parallax-with-jquery/
01 | var movementStrength = 15; |
03 | var height = movementStrength / $(window).height(); |
04 | var width = movementStrength / $(window).width(); |
06 | $( "html" ).mousemove( function (e){ |
08 | var pageX = e.pageX - ($(window).width() / 2); |
09 | var pageY = e.pageY - ($(window).height() / 2); |
11 | var newvalueX = width * pageX * -1; |
12 | var newvalueY = height * pageY * -1; |
14 | $( 'body' ).css( "background-position" , newvalueX+ "px " +newvalueY+ "px" ); |
참고로
http://www.egstudio.biz/ 포스팅이 괜찮음. (기초적인내용들)