jquery 그림 클릭 자동 페이지 넘기기 실현

1281 단어 jquery
JQuey를 사용하면 그림이 자동으로 위로 올라가고 아래로 넘어가는 것을 실현할 수 있습니다!코드:
 
 
$(document).ready(function() {
	$("img").mousemove(function(e){  
		var positionX=e.originalEvent.layerX||e.originalEvent.x||0;
		if(positionX<=$(this).width()/2){           
			 this.style.cursor='url("/image/single/pre.cur"),auto';
			 $(this).attr('title','       ');
			 $(this).parent().attr('href','$url&goto=up'); 
		}else{  
			 this.style.cursor='url("/image/single/next.cur"),auto';
			 $(this).attr('title','       ');
			 $(this).parent().attr('href','$url&goto=down');
		} 
	});
});
 
 
이상은 기본적으로 기능을 실현했습니다!!!
 
지불:
 
크롬 정보:
 
 
event.layerX and event.layerY are broken and deprecated in WebKit. They will be removed from the engine in the near future.
 
자세한 내용은 http://stackoverflow.com/questions/7825448/webkit-issues-with-event-layerx-and-event-layery를 참조하십시오.
 
 
 

좋은 웹페이지 즐겨찾기