본문 바로가기

카테고리 없음

[자바스크립트] [마우스] 커서모양 바꾸기

<head>와 </head>부분에 넣어줍니다.
*****************************************
<style>
<!--
A:link {cursor:n-resize}
A:visited {cursor:n-resize}
A:active {cursor:n-resize}
A:hover {cursor:n-resize}
body,td{cursor:s-resize;}
-->
</style>


[설명]
*****************************************
body,td{cursor:s-resize;} - 기본 문서의 마우스 커서모양

[활용]
*****************************************
텍스트 사용시 <font style="옵션값" >해서 써주셔도 됩니다.

[옵션]
*****************************************
cursor:hand  (손 모양)
cursor:wait  (모래시계 모양)
cursor:help  (물음표 모양)
cursor:move  (이동표시 모양)
cursor:crosshair  (┼ 모양)
cursor:n-resize  (↑ 모양)
cursor:e-resize  (→  모양)
cursor:s-resize  (↓ 모양)
cursor:w-resize  (← 모양)
cursor:se-resize (↘ 모양 )
cursor:sw-resize (↙ 모양)
cursor:ne-resize (↗ 모양)
cursor:nw-resize (↖ 모양)