hoverで画像表示を変える
hoverを調べたきっかけ
- 画像をクリックすると詳細ページに遷移する機能を作ってみた
- しかし画像上にカーソルを置いてもクリックできるかどうか見た目だけだとわからない。(アクションがない)
→ ユーザー視点から、画像をクリックできるか分かりにくい印象。
- カーソルを画像上に置くと、クリックできるとわかるような動きが欲しい!
調べるとhoverという機能を発見。実装したので記事にしてみました。
参照
下記サイトを参考にさせて頂きました!
大変参考になりました、ありがとうございました!
https://lab.sonicmoov.com/markup/css/hover-css/
実装したhover
このようにカーソルを画面上に置くと、画像が変化し、クリックしやすくなる
HTML
まずは画像を挿入している部分にクラス名を付ける(今回は、"button grow")
html.erb
<%= link_to public_public_golfcourse_path(golf_course.id) do %>
<%= attachment_image_tag golf_course, :image, size: "180x120", fallback: "no_image.jpeg",class: "button grow p-2" %><br>
<% end %>
CSS
HTMLでclassをつけたら、次はCSSにhover対応を記述していく。
homes.scss
/* Default styles for the demo buttons */
.button {
// margin: .4em;
// padding: 1em;
cursor: pointer;
// background: $primaryColour;
text-decoration: none;
color: $secondaryColour;
}
/* 2D TRANSITIONS */
/* Grow */
.grow {
display: inline-block;
transition-duration: $defaultDuration;
transition-property: transform;
@include hideTapHighlightColor();
@include hardwareAccel();
@include improveAntiAlias();
&:hover {
transform: scale(1.1);
}
}
クラス名とCSSを少しいじるだけで、使い勝手のいいものになりました!
Author And Source
この問題について(hoverで画像表示を変える), 我々は、より多くの情報をここで見つけました https://qiita.com/sayoshio/items/a764d6a88511ed228a2a著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .