LoginSignup
3
4

More than 5 years have passed since last update.

画像リンクにホバーでマウスカーソル(指マーク)を表示

Last updated at Posted at 2016-02-15

モーダルウィンドウなど、画像クリックで開きたい際
マウスカーソルがデフォルトだとリンクになっているかわからんぞって時

cursorプロパティを使う

■html

<p><a class="modal_open img_link"><img src="img/test.jpg></a></p>

■CSS

img_link {
 cursor: pointer;
}

サンプル

cssなし.jpgcssあり_r2_c1.jpg

cursorプロパティのおまけ

他にもいろんな値(マウスカーソルの種類)があるみたいだ

pointer 指カーソル
crosshair 十字カーソル
move 移動カーソル
text テキスト編集カーソル
wait 待機・処理中カーソル

3
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
4