码迷,mamicode.com
首页 > Web开发 > 详细

图片放上效果ImageHover.css

时间:2020-03-31 14:04:04      阅读:79      评论:0      收藏:0      [点我收藏+]

标签:添加   背景   dem   效果   data-   开发   click   性问题   sel   

网页效果中经常会用到图片的hover效果,ImageHover.css 这个库为我们提供了多种的效果。

兼容性

插件是使用css3书写的,所以最好是对css3支持比较好的浏览器。如果需要考虑到兼容性问题,那么建议使用我自己写的jq版效果,虽然效果单一,但是兼容性更好。

效果演示地址

技术图片

Demohttp://weber.pub/demo/160919/index.html

下载

  • 直接下载

链接:http://imagehover.io/

  • github 地址

github 地址:https://github.com/ciar4n/imagehover.css

  • Bower 安装

bower install imagehover.css

使用

  • 1、在页面的head 部位引入插件

<head>
  <link rel="stylesheet" href="css/imagehover.min.css">
</head>
  • 2、HTML代码

其中figure标签的class imghvr-fade就是对应的 CSS hover 效果,这个 Class 名称可以查看演示页:http://weber.pub/demo/160919/index.html

<figure class="imghvr-fade">
  <img src="#">
  <figcaption>
    // Hover Content
  </figcaption>
</figure>
  • 3、如果图片上需要添加链接,这时html 代码如下

<figure class="imghvr-fade">
    <img src="#">
    <figcaption>
      // Hover Content
    </figcaption>
    <a href="http://www.imagehover.io"></a>
</figure>
  • 4、统一修改hover效果的背景颜色

修改 imagehover.css 文件

[class^=‘imghvr-‘],
[class*=‘ imghvr-‘] {
  background-color: #D14233;
}
  • 5、单独修改某个hover效果代码

<figure class="imghvr-fade" style="background-color:#D14233;">
    <img src="#">
    <figcaption>
      // Hover Content
    </figcaption>
</figure>

演示地址:http://weber.pub/demo/160919/index.html

部分演示代码

<div class="demo">
  <figure class="imghvr-zoom-out-down"><img src="example-image.jpg" alt="example-image">
    <figcaption>
      <h3>Weber.pub</h3>
      <p>Web开发者,努力学习中</p>
    </figcaption><a href="javascript:;"></a>
  </figure>
  <textarea onclick="this.focus();this.select()" readonly="readonly">imghvr-zoom-out-down</textarea>
</div>

结尾

by Weber.pub

本文地址:http://weber.pub/图片放上效果imagehover-css/205.html

图片放上效果ImageHover.css

标签:添加   背景   dem   效果   data-   开发   click   性问题   sel   

原文地址:https://www.cnblogs.com/jlfw/p/12604541.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!