Cursor in HTML

WBOY
Freigeben: 2024-09-04 16:53:24
Original
944 Leute haben es durchsucht

Cursor in HTML property controls the shape or look and feel of the cursor when it is hovering on any HTML element by using a specific type of cursor property. This concept is applicable only for whatever devices have a cursor and mouse; if not, this feature could any relevant results with cursor property. The purpose of this cursor property is in using images for submitting buttons on any forms. Whenever an end-user hovers over an image, then if that is a submit button, automatically it gives you a clue that the image is working as a button by clicking it.

How does Cursor Property work in HTML?

HTML cursor property works based on style property within HTML tag. We will investigate some different cursor syntax in HTML.

Syntax #1

<span style="cursor:auto">auto</span>
Nach dem Login kopieren

Syntax #2

<span style="cursor:crosshair">crosshair</span>
Nach dem Login kopieren

Syntax #3

<span style="cursor:default">default</span>
Nach dem Login kopieren

Syntax #4

<span style="cursor:e-resize">e-resize</span>
Nach dem Login kopieren

Syntax #5

<span style="cursor:help">help</span>
Nach dem Login kopieren

Syntax #6

<span style="cursor:move">move</span>
Nach dem Login kopieren

Syntax #7

<span style="cursor:n-resize">n-resize</span>
Nach dem Login kopieren

Syntax #8

<span style="cursor:ne-resize">ne-resize</span>
Nach dem Login kopieren

Syntax #9

<span style="cursor:nw-resize">nw-resize</span>
Nach dem Login kopieren

Syntax #10

<span style="cursor:pointer">pointer</span>
Nach dem Login kopieren

Syntax #11

<span style="cursor:progress">progress</span>
Nach dem Login kopieren

Syntax #12

<span style="cursor:s-resize">s-resize</span>
Nach dem Login kopieren

Syntax #13

<span style="cursor:se-resize">se-resize</span>
Nach dem Login kopieren

Syntax #14

<span style="cursor:sw-resize">sw-resize</span>
Nach dem Login kopieren

Syntax #15

<span style="cursor:text">text</span>
Nach dem Login kopieren

Syntax #16

<span style="cursor:w-resize">w-resize</span>
Nach dem Login kopieren

Syntax #17

<span style="cursor:wait">wait</span>
Nach dem Login kopieren

Cursor Values and its Description Table

調整大小行調整大小n-調整大小
Type HTML Value How Cursor Look Like? Description
General auto Based on the text cursor will change automatically.
default Cursor in HTML By default, an arrow cursor.
none No cursor is displayed.
Links & Status context-menu Cursor in HTML Cursor like context menu
help Cursor in HTML Help information with an arrow question mark.
pointer Cursor in HTML Pointer symbol with a hand like a cursor.
progress Cursor in HTML Says program is busy and can able to interact with the application.
wait Cursor in HTML Says program is busy and cannot able to interact with the application.
Selection cell Cursor in HTML Cells can be selected from the table showing the cursor.
crosshair Cursor in HTML Cross cursor used for selection.
text Cursor in HTML An I-beam cursor used for the selected text.
vertical-text Cursor in HTML A sideway I-beam cursor used for the vertical selected text.
Drag & Drop alias Cursor in HTML shortcut cursor
copy Cursor in HTML Copied cursor
move Cursor in HTML the element can be moved with the cursor.
no-drop
Cursor in HTML
項目未掉落,顯示遊標。
不允許 Cursor in HTML 請求無法繼續遊標操作。
抓住 Cursor in HTML 抓住遊標
Cursor in HTML 有東西被抓住遊標。
調整大小和滾動 全滾動
Cursor in HTML
Cursor in HTML
在顯示遊標的任何特定方向上捲動。 Cursor in HTML
項目/列可以水平調整大小。 Cursor in HTML
項目/列可以垂直調整大小。 Cursor in HTML
在顯示遊標的特定顯示方向上移動的任何邊緣。 Cursor in HTML
電子調整大小 Cursor in HTML
s-調整大小 Cursor in HTML
w-調整大小 Cursor in HTML
重新調整大小 Cursor in HTML
西北調整大小 Cursor in HTML
自動調整大小 Cursor in HTML
sw-調整大小 Cursor in HTML 調整大小
雙向調整遊標大小。 Cursor in HTML
ns-調整大小 Cursor in HTML
新調整大小 Cursor in HTML
nwse-調整大小 Cursor in HTML縮放 放大
放大縮小顯示遊標Cursor in HTML
縮小

 Examples to Implement Cursor in HTML

Below are the examples mentioned:

Example #1

Links and Status showing cursors.

Code: 

<!DOCTYPE html>
<html>
<head>
<meta charset="ISO-8859-1">
<title>Cursors in HTML</title>
<style type="text/css">
.div2 {
border: 1px solid brown;
color: green;
width: 900px;
font-size: 20px;
}
.div3 {
border: 1px solid brown;
color: red;
width: 900px;
font-size: 20px;
}
.div4 {
border: 1px solid brown;
color: blue;
width: 900px;
font-size: 20px;
}
.div5 {
border: 1px solid brown;
color: lime;
width: 900px;
font-size: 20px;
}
</style>
</head>
<body>
<div class="div2">
<h3 style="text-align: center">Progress Cursor Demo</h3>
<span style="cursor: progress">Cursor in HTML property controls
shape or look and feel of the cursor when it is hovering on the any
HTML element by using specific type of cursor property.</span>
</div>
<br>
<div class="div3">
<h3 style="text-align: center">Help Cursor Demo</h3>
<span style="cursor: help">Cursor in HTML property controls
shape or look and feel of the cursor when it is hovering on the any
HTML element by using specific type of cursor property.</span>
</div>
<br>
<div class="div4">
<h3 style="text-align: center">Pointer Cursor Demo</h3>
<span style="cursor: pointer">Cursor in HTML property controls
shape or look and feel of the cursor when it is hovering on the any
HTML element by using specific type of cursor property.</span>
</div>
<br>
<div class="div5">
<h3 style="text-align: center">Wait Cursor Demo</h3>
<span style="cursor: wait">Cursor in HTML property controls
shape or look and feel of the cursor when it is hovering on the any
HTML element by using specific type of cursor property.</span>
</div>
</html>
Nach dem Login kopieren

Output:

Cursor in HTML

Explanation: In the above output, click any paragraph for seeing the corresponding cursor output.

Example #2

Selection showing cursors

Code:

<!DOCTYPE html>
<html>
<head>
<meta charset="ISO-8859-1">
<title>Cursors in HTML</title>
<style type="text/css">
.div2 {
border: 1px solid blue;
color: fuchsia;
width: 900px;
font-size: 20px;
}
.div3 {
border: 1px solid blue;
color: gray;
width: 900px;
font-size: 20px;
}
.div4 {
border: 1px solid blue;
color: maroon;
width: 900px;
font-size: 20px;
}
</style>
</head>
<body>
<div class="div2">
<h3 style="text-align: center">Cross hair Cursor Demo</h3>
<span style="cursor: crosshair">Cursor in HTML property controls
shape or look and feel of the cursor when it is hovering on the any
HTML element by using specific type of cursor property.</span>
</div>
<br>
<div class="div3">
<h3 style="text-align: center">Horizontal Text Cursor Demo</h3>
<span style="cursor: text">Cursor in HTML property controls
shape or look and feel of the cursor when it is hovering on the any
HTML element by using specific type of cursor property.</span>
</div>
<br>
<div class="div4">
<h3 style="text-align: center">Vertical Text Cursor Demo</h3>
<span style="cursor: vertical-text">Cursor in HTML property controls
shape or look and feel of the cursor when it is hovering on the any
HTML element by using specific type of cursor property.</span>
</div>
</html>
Nach dem Login kopieren

Output:

Cursor in HTML

Explanation: In the above output, click any paragraph for seeing the corresponding cursor output.

Example #3

Drag and drop showing cursors.

Code:

<!DOCTYPE html>
<html>
<head>
<meta charset="ISO-8859-1">
<title>Cursors in HTML</title>
<style type="text/css">
.div2 {
border: 1px solid red;
color: orange;
width: 900px;
font-size: 20px;
}
.div3 {
border: 1px solid red;
color: olive;
width: 900px;
font-size: 20px;
}
.div4 {
border: 1px solid red;
color: navy;
width: 900px;
font-size: 20px;
}
.div5 {
border: 1px solid red;
color: lime;
width: 900px;
font-size: 20px;
}
.div6 {
border: 1px solid red;
color: blue;
width: 900px;
font-size: 20px;
}
.div7 {
border: 1px solid red;
color: maroon;
width: 900px;
font-size: 20px;
}
</style>
</head>
<body>
<div class="div2">
<h3 style="text-align: center">Alias Cursor Demo</h3>
<span style="cursor: alias">Cursor in HTML property controls
shape or look and feel of the cursor when it is hovering on the any
HTML element by using specific type of cursor property.</span>
</div>
<br>
<div class="div3">
<h3 style="text-align: center">Copy Cursor Demo</h3>
<span style="cursor: copy">Cursor in HTML property controls
shape or look and feel of the cursor when it is hovering on the any
HTML element by using specific type of cursor property.</span>
</div>
<br>
<div class="div4">
<h3 style="text-align: center">Move Cursor Demo</h3>
<span style="cursor: move">Cursor in HTML property controls
shape or look and feel of the cursor when it is hovering on the any
HTML element by using specific type of cursor property.</span>
</div>
<br>
<div class="div5">
<h3 style="text-align: center">No-drop Cursor Demo</h3>
<span style="cursor: no-drop">Cursor in HTML property controls
shape or look and feel of the cursor when it is hovering on the any
HTML element by using specific type of cursor property.</span>
</div>
<br>
<div class="div6">
<h3 style="text-align: center">Grab Cursor Demo</h3>
<span style="cursor: grab">Cursor in HTML property controls
shape or look and feel of the cursor when it is hovering on the any
HTML element by using specific type of cursor property.</span>
</div>
<br>
<div class="div7">
<h3 style="text-align: center">Not-allowed Cursor Demo</h3>
<span style="cursor: not-allowed">Cursor in HTML property
controls shape or look and feel of the cursor when it is hovering on
the any HTML element by using specific type of cursor property.</span>
</div>
</html>
Nach dem Login kopieren

Output:

Cursor in HTML

Cursor in HTML

Explanation: In the above output, click any paragraph for seeing the corresponding cursor output.

Example #4

Selection showing cursors.

Code:

<!DOCTYPE html>
<html>
<head>
<meta charset="ISO-8859-1">
<title>Cursors in HTML</title>
<style type="text/css">
.div2 {
border: 1px solid fuchsia;
color: teal;
width: 900px;
font-size: 20px;
}
.div3 {
border: 1px solid fuchsia;
color: purple;
width: 900px;
font-size: 20px;
}
</style>
</head>
<body>
<div class="div2">
<h3 style="text-align: center">Zoom-in Cursor Demo</h3>
<span style="cursor: zoom-in">Cursor in HTML property controls
shape or look and feel of the cursor when it is hovering on the any
HTML element by using specific type of cursor property.</span>
</div>
<br>
<div class="div3">
<h3 style="text-align: center">Zoom-out Cursor Demo</h3>
<span style="cursor: zoom-out">Cursor in HTML property controls
shape or look and feel of the cursor when it is hovering on the any
HTML element by using specific type of cursor property.</span>
</div>
</html>
Nach dem Login kopieren

Output:

Cursor in HTML

Explanation: In the above output, click any paragraph for seeing the corresponding cursor output.

Conclusion

Cursor property works based on property value given to the cursor. Based on the requirement, we choose which cursor action required at the instant.

Das obige ist der detaillierte Inhalt vonCursor in HTML. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!

Quelle:php
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage
Über uns Haftungsausschluss Sitemap
Chinesische PHP-Website:Online-PHP-Schulung für das Gemeinwohl,Helfen Sie PHP-Lernenden, sich schnell weiterzuentwickeln!