CSS3鼠标悬停

来源:互联网 发布:机房网络拓扑结构图 编辑:程序博客网 时间:2024/05/14 05:39

CSS3鼠标悬停

 

当鼠标停放在图片时会在当前图片出现页面特效动画,可用于显示该图片的信息等功能

 

引用插件

imagehover.css

编写代码:

 

 <div class="demo">

                <figure class="imghvr-fade">

                    <img src="~/悬停/img/example-image.jpg" alt="example-image">

                    <figcaption>

                        <h3>Hello World</h3>

                        <p>Life is too important to be taken seriously!</p>

                    </figcaption><a href="javascript:;"></a>

                </figure>

            </div>

 

运行效果:

 

 

0 0