图片/图形

鼠标滑过图片遮罩层动画CSS3特效

阿里云


这是一款使用 CSS3 制作的炫酷鼠标滑过图片遮罩层动画特效。该特效中有 2 种不同的效果,均是咋 is 本滑过图片时,使用遮罩层的旋转和缩放来展示图片的描述信息。

HTML 结构

该特效使用 bootstrap 来进行布局,核心代码为使用一个 div.box 作为容器,里面放置图片和一个遮罩层 div.box-content。

也想出现在这里?联系我们
创客主机
  1. <div class="box">
  2.     <img src="img/1.jpg">
  3.     <div class="box-content">
  4.         <h3 class="title">图片名称</h3>
  5.         <p class="description">
  6.             描述信息...
  7.         </p>
  8.         <a class="read" href="#">Read More</a>
  9.     </div>
  10. </div>

CSS 样式

在第一个 DEMO 中,鼠标滑过图片的效果为图片线居中缩小,然后遮罩层在反向放大。其实现代码非常简单,主要使用 transform 属性来制作缩放和旋转,并通过 transition 来制作平滑过渡的动画效果。

  1. .box{
  2.     background: #fff;
  3.     box-shadow: 0 0 5px #bababa;
  4.     text-align: center;
  5.     overflow: hidden;
  6.     position: relative;
  7. }
  8. .box img{
  9.     width: 100%;
  10.     height: auto;
  11.     transition: all 0.4s ease-in-out 0.2s;
  12. }
  13. .box:hover img{
  14.     transform: scale(0);
  15.     transition-delay: 0s;
  16. }
  17. .box .box-content{
  18.     width: 100%;
  19.     height: 100%;
  20.     background: #425770;
  21.     color: #fff;
  22.     padding: 30px;
  23.     position: absolute;
  24.     top: 0;
  25.     left: 0;
  26.     opacity: 0;
  27.     transform: scale(0) rotate(-180deg);
  28.     transition: all 0.4s ease-in 0s;
  29. }
  30. .box:hover .box-content{
  31.     opacity: 1;
  32.     transform: scale(1) rotate(0deg);
  33.     transition-delay: 0.2s;
  34. }
  35. .box .title{
  36.     font-size: 20px;
  37.     font-weight: 800;
  38.     border-bottom: 1px solid #334a65;
  39.     padding-bottom: 10px;
  40.     margin-top: 0;
  41.     text-transform: capitalize;
  42. }
  43. .box .description{
  44.     font-size: 13px;
  45.     font-style: italic;
  46.     line-height: 20px;
  47.     margin-bottom: 30px;
  48. }
  49. .box .read{
  50.     display: inline-block;
  51.     font-size: 14px;
  52.     color: #fff;
  53.     background: #132d4d;
  54.     padding: 7px 20px;
  55.     text-transform: capitalize;
  56. }
  57. @media only screen and (max-width: 990px){
  58.     .box{ margin-bottom: 20px; }
  59. }
  60. @media only screen and (max-width: 479px){
  61.     .box .box-content{ padding: 20px; }
  62. }
  63. @media only screen and (max-width: 359px){
  64.     .box .box-content{ padding: 10px; }
  65. }

第二个 DEMO 的实现代码请参考下载文件。

鼠标滑过图片遮罩层动画 CSS3 特效

已有 363 人购买
  • qn6c
查看演示升级 VIP立刻购买

演示地址 下载地址
收藏
(0)

发表回复

热销模板

Ashade - 作品展示摄影相册WordPress汉化主题
LensNews

本站承接 WordPress / PbootCMS / DedeCMS 等
系统建站、仿站、开发、定制等业务!