ホバーオンのときにクリック可能な画像があります。簡単な説明を表示したいと思います。 私はCSSとjQueryを使って試したメソッドを持っていますが、安定した状態(静的)のままではなくホバーすると輝くようです。ホバークリック可能な画像の説明が機能しない
HTML
<a href="#" class="project">
<img src="images/valencia.png"/>
</a>
<a href="#" class="description">
<p>In this website you find information about sport and gastronomy in Valencia. It was built for the Erasmus+ Project.</p>
</a>
CSS
a.project img {
height: 150px;
width: 200px;
border-radius: 5px;
border: 1px solid #fff;
}
a.description {
text-decoration: none;
}
a.description {
height: 150px;
width: 200px;
background-color: white;
color: black;
border-radius: 5px;
opacity: 0.8;
position: absolute;
top: 0;
left: 90px;
right: 0;
bottom: 0;
visibility: hidden;
}
a.description p {
margin-top: 35px;
}
jQueryの
$('a.project img').mouseover(function(){
$('a.description').css("visibility","visible");
});
$('a.project img').mouseout(function(){
$('a.description').css("visibility","hidden");
});
詳しく説明してください。私はあなたのコードをフィドルに掲載しました。ホバー効果は期待通りに機能しているようです。 https://jsfiddle.net/f7fqcprs/ –
これを見て、それが役立つかどうかを見てください。 http://stackoverflow.com/questions/16971757/how-to-display-text-over-a-faded-image-on-hover-using-jquery – Danieboy
@RobertC、あなたがマウスを動かせばよくわかるようにイメージ、テキストglitters、私は静的にしたい。 –