cursor : value


auto/default(기본), crosshair(십자 모양), pointer(포인터모양), move(움직임모양), copy(복사모양), help(도움말모양), progress(프로그그램 실행 중 모양), text, wait, zoom-in, zoom-out, n-resize(상하크기조절 모양), e-resize(양옆크깆절 모양), ne-resize(대각선크기조절 모양)



1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>마우스 커서</title>
</head>
<body>
<h3>마우스 커서</h3>
아래에 마우스를 올려 보세요. 커서가 변합니다.
<hr>
<p style="cursor: crosshair">십자 모양 커서</p>
<p style="cursor: help">도움말 모양 커서</p>
<p style="cursor: pointer">포인터 모양 커서</p>
<p style="cursor: progress">프로그램 실행 중 모양 커서</p>
<p style="cursor: n-resize">상하 크기 조절 모양 커서</p>
</body>
</html>
 
cs


Posted by 너래쟁이
: