html 链接悬停图像

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html 链接悬停图像相关的知识,希望对你有一定的参考价值。

http://jsfiddle.net/ruisoftware/ZSZQK/7/


<figure>
    <img src="http://placekitten.com/200/100" />
    <figcaption>
    <a href="http://google.com">VIEW</a>
    </figcaption>
</figure>

<figure>
    <img src="http://placekitten.com/200/100" />
    <figcaption>
    <a href="http://google.com">VIEW2</a>
    </figcaption>
</figure>



<style>
figure {
    position: relative;
    display: inline-block;
}

figcaption {
    display: none;
    position: absolute;
    left: 0;
    bottom: 50%;
    right: 0;
    text-align:center;
    /* background-color: rgba(0,0,0,.15); */
}

figure:hover img {
    opacity: .6;
}

figure:hover figcaption {
    display: block;
}
</style>

以上是关于html 链接悬停图像的主要内容,如果未能解决你的问题,请参考以下文章

html 链接悬停图像

Share Code | Javascript & HTML & CSS链接悬停显示图像效果

HTML:删除图像的:悬停?

Html和CSS如何使具有悬停效果的图像成为超链接

将鼠标悬停在图像上以获取一个带有 html/JavaScript 中的多个链接的框

使图像出现在链接悬停css上