すべてのカーソルオプションを探索する
みんな、ヘッドアップ、カーソルのオプションは、これまで使用されている多くのです!
カーソルは本当に何が起こっているかを理解するために人を助けることができるので、必要なときにそれらのより多くの使用をしましょう.
今日の例では、我々はすべての選択肢を探ります.
CodeFenでこの例のすべてのカーソルオプションを見てください.(タイル張り)
我々のために
に関しては
カーソルはかなりよくサポートされて!機能は、いくつかのモバイルブラウザーの周りされているが、それは“余分な”としてこれを参照してくださいする必要はありません.
私のブログを読んでくれてありがとう.私の電子メール会報を購読して、接続してくださいFacebook or
カーソルは本当に何が起こっているかを理解するために人を助けることができるので、必要なときにそれらのより多くの使用をしましょう.
今日の例では、我々はすべての選択肢を探ります.
CodeFenでこの例のすべてのカーソルオプションを見てください.(タイル張り)
HTML構造
我々のために
HTML
我々は、いくつかのタイルを使用して、それぞれ異なるカーソルでホバーします.<div class="container">
<div class="alias">alias</div>
<div class="all-scroll">all-scroll</div>
<div class="auto">auto</div>
<div class="cell">cell</div>
<div class="context-menu">context-menu</div>
<div class="col-resize">col-resize</div>
<div class="copy">copy</div>
<div class="crosshair">crosshair</div>
<div class="default">default</div>
<div class="e-resize">e-resize</div>
<div class="ew-resize">ew-resize</div>
<div class="grab">grab</div>
<div class="grabbing">grabbing</div>
<div class="help">help</div>
<div class="move">move</div>
<div class="n-resize">n-resize</div>
<div class="ne-resize">ne-resize</div>
<div class="nesw-resize">nesw-resize</div>
<div class="ns-resize">ns-resize</div>
<div class="nw-resize">nw-resize</div>
<div class="nwse-resize">nwse-resize</div>
<div class="no-drop">no-drop</div>
<div class="none">none</div>
<div class="not-allowed">not-allowed</div>
<div class="pointer">pointer</div>
<div class="progress">progress</div>
<div class="row-resize">row-resize</div>
<div class="s-resize">s-resize</div>
<div class="se-resize">se-resize</div>
<div class="sw-resize">sw-resize</div>
<div class="text">text</div>
<div class="w-resize">w-resize</div>
<div class="wait">wait</div>
<div class="zoom-in">zoom-in</div>
<div class="zoom-out">zoom-out</div>
</div>
どのようなリスト右?我々はそれが狂っているので、多くのカーソルを持つことができます!CSSカーソルオプション
に関しては
CSS
, 右に飛び込みましょう.alias {
cursor: alias;
}
.all-scroll {
cursor: all-scroll;
}
.auto {
cursor: auto;
}
.cell {
cursor: cell;
}
.context-menu {
cursor: context-menu;
}
.col-resize {
cursor: col-resize;
}
.copy {
cursor: copy;
}
.crosshair {
cursor: crosshair;
}
.default {
cursor: default;
}
.e-resize {
cursor: e-resize;
}
.ew-resize {
cursor: ew-resize;
}
.grab {
cursor: grab;
}
.grabbing {
cursor: grabbing;
}
.help {
cursor: help;
}
.move {
cursor: move;
}
.n-resize {
cursor: n-resize;
}
.ne-resize {
cursor: ne-resize;
}
.nesw-resize {
cursor: nesw-resize;
}
.ns-resize {
cursor: ns-resize;
}
.nw-resize {
cursor: nw-resize;
}
.nwse-resize {
cursor: nwse-resize;
}
.no-drop {
cursor: no-drop;
}
.none {
cursor: none;
}
.not-allowed {
cursor: not-allowed;
}
.pointer {
cursor: pointer;
}
.progress {
cursor: progress;
}
.row-resize {
cursor: row-resize;
}
.s-resize {
cursor: s-resize;
}
.se-resize {
cursor: se-resize;
}
.sw-resize {
cursor: sw-resize;
}
.text {
cursor: text;
}
.w-resize {
cursor: w-resize;
}
.wait {
cursor: wait;
}
.zoom-in {
cursor: zoom-in;
}
.zoom-out {
cursor: zoom-out;
}
そして、それらが十分でない場合は、カスタムイメージを得ることもできます!.url {
cursor: url('images/cursor.png'), auto;
}
ブラウザサポート
カーソルはかなりよくサポートされて!機能は、いくつかのモバイルブラウザーの周りされているが、それは“余分な”としてこれを参照してくださいする必要はありません.
読んでいただきありがとうございます、接続しましょう!
私のブログを読んでくれてありがとう.私の電子メール会報を購読して、接続してくださいFacebook or
Reference
この問題について(すべてのカーソルオプションを探索する), 我々は、より多くの情報をここで見つけました https://dev.to/dailydevtips1/css-exploring-all-cursor-options-5a23テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol