Maison > interface Web > tutoriel HTML > Curseur en HTML

Curseur en HTML

WBOY
Libérer: 2024-09-04 16:53:24
original
983 Les gens l'ont consulté

Curseur dans la propriété HTML contrôle la forme ou l'apparence du curseur lorsqu'il survole un élément HTML en utilisant un type spécifique de propriété de curseur. Ce concept s'applique uniquement aux appareils dotés d'un curseur et d'une souris ; sinon, cette fonctionnalité pourrait obtenir des résultats pertinents avec la propriété du curseur. Le but de cette propriété de curseur est d'utiliser des images pour soumettre des boutons sur n'importe quel formulaire. Chaque fois qu'un utilisateur final survole une image, s'il s'agit d'un bouton de soumission, il vous indique automatiquement que l'image fonctionne comme un bouton en cliquant dessus.

Comment fonctionne la propriété Curseur en HTML ?

La propriété du curseur HTML fonctionne sur la base de la propriété de style dans la balise HTML. Nous étudierons différentes syntaxes de curseur en HTML.

Syntaxe n°1

<span style="cursor:auto">auto</span>
Copier après la connexion

Syntaxe #2

<span style="cursor:crosshair">crosshair</span>
Copier après la connexion

Syntaxe #3

<span style="cursor:default">default</span>
Copier après la connexion

Syntaxe #4

<span style="cursor:e-resize">e-resize</span>
Copier après la connexion

Syntaxe #5

<span style="cursor:help">help</span>
Copier après la connexion

Syntaxe #6

<span style="cursor:move">move</span>
Copier après la connexion

Syntaxe #7

<span style="cursor:n-resize">n-resize</span>
Copier après la connexion

Syntaxe #8

<span style="cursor:ne-resize">ne-resize</span>
Copier après la connexion

Syntaxe #9

<span style="cursor:nw-resize">nw-resize</span>
Copier après la connexion

Syntaxe #10

<span style="cursor:pointer">pointer</span>
Copier après la connexion

Syntaxe #11

<span style="cursor:progress">progress</span>
Copier après la connexion

Syntaxe #12

<span style="cursor:s-resize">s-resize</span>
Copier après la connexion

Syntaxe #13

<span style="cursor:se-resize">se-resize</span>
Copier après la connexion

Syntaxe #14

<span style="cursor:sw-resize">sw-resize</span>
Copier après la connexion

Syntaxe #15

<span style="cursor:text">text</span>
Copier après la connexion

Syntaxe #16

<span style="cursor:w-resize">w-resize</span>
Copier après la connexion

Syntaxe #17

<span style="cursor:wait">wait</span>
Copier après la connexion

Cursor Values and its Description Table

Type HTML Value How Cursor Look Like? Description
General auto Based on the text cursor will change automatically.
default Curseur en HTML By default, an arrow cursor.
none No cursor is displayed.
Links & Status context-menu Curseur en HTML Cursor like context menu
help Curseur en HTML Help information with an arrow question mark.
pointer Curseur en HTML Pointer symbol with a hand like a cursor.
progress Curseur en HTML Says program is busy and can able to interact with the application.
wait Curseur en HTML Says program is busy and cannot able to interact with the application.
Selection cell Curseur en HTML Cells can be selected from the table showing the cursor.
crosshair Curseur en HTML Cross cursor used for selection.
text Curseur en HTML An I-beam cursor used for the selected text.
vertical-text Curseur en HTML A sideway I-beam cursor used for the vertical selected text.
Drag & Drop alias Curseur en HTML shortcut cursor
copy Curseur en HTML Copied cursor
move Curseur en HTML the element can be moved with the cursor.
no-drop
Curseur en HTML
Element wurde nicht abgelegt, Cursor wird angezeigt.
nicht erlaubt Curseur en HTML Anfrage kann Cursoraktion nicht übertragen.
zupacken Curseur en HTML Cursor erfasst
zupackend Curseur en HTML Etwas wird mit dem Cursor erfasst.
Größe ändern und scrollen Alles scrollen
Curseur en HTML
Curseur en HTML In eine bestimmte Richtung gescrollt, wobei der Cursor angezeigt wird. Curseur en HTML Farbengröße ändern Die Größe des Elements/der Spalte kann horizontal geändert werden.Curseur en HTML Zeilengröße ändern Die Größe des Elements/der Spalte kann vertikal geändert werden.Curseur en HTML n-Größe ändern Jede Kante bewegt sich in eine bestimmte angezeigte Richtung und zeigt den Cursor an.Curseur en HTML e-Größe ändern Curseur en HTML S-Größe ändern Curseur en HTML W-Größe ändern Curseur en HTML ne-resize Curseur en HTML nw-resize Curseur en HTML Größe ändern Curseur en HTML sw-resize Curseur en HTML neue Größenänderung Bidirektionaler Größenänderungscursor.Curseur en HTML ns-resize Curseur en HTML new-resize Curseur en HTML nwse-resize Curseur en HTMLZoomen Vergrößern Vergrößern und Verkleinern zeigt den Cursor anCurseur en HTML Herauszoomen

 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>
Copier après la connexion

Output:

Curseur en 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>
Copier après la connexion

Output:

Curseur en 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>
Copier après la connexion

Output:

Curseur en HTML

Curseur en 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>
Copier après la connexion

Output:

Curseur en 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.

Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!

Étiquettes associées:
source:php
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal