图片/图形

CSS3 Transitions炫酷图片标题特效

阿里云


这是一款效果非常酷的 CSS3 Transitions 图片标题特效。这组图片标题特效共 5 种不同的效果,都是使用 CSS3 Transitions 过渡动画来制作,分别是移动动画,翻转动画,缩放动画,旋转动画等。这组动画在桌面设备上使用鼠标滑过图片来产生图片标题动画效果。在移动触摸设备上,由于没有 hover 事件,特效中使用 Modernizr 来检测设备,当检测到是移动触摸设备时,改用 touch 事件来取代 hover 事件。在移动触摸设备上,当图片标题显示之后,会有一个关闭按钮出现,用于关闭当前的图片标题效果。

HTML 结构

该图片标题的 HTML 结构使用 HTML5 figure 标签来制作,该标签允许我们设置一张图片和一个图片标题。当我们用鼠标滑过这个元素的时候,图片会向外移动,而图片标题会平滑的过渡显示出来。特效中会使用 Modernizr 来识别是否是可触摸设备,在非触摸设备上,html 标签上会被设置.no-touchclass。而在移动触摸设备上,使用一些 javascript 来添加.hover class。对于移动设备,Modernizr 会在 html 标签上添加.touch class,

也想出现在这里?联系我们
创客主机
  1. <figure>
  2.     <img src="img/img-src.jpg" alt="">
  3.     <figcaption>
  4.         <h3>Image title</h3>
  5.         <span>Image Caption</span>
  6.         <a href="#" class="close-caption hidden">x</a>
  7.     </figcaption>
  8. </figure>

CSS 样式

figure 元素采用相对定位的方式,这样在它里面的图片和标题就可以采用绝对定位的方式来堆叠在一起。图片显示为 display:block,也使用相对定位的方式。图片标题则采用绝对定位的方式。开始的时候图片的 z-index 要大于标题的 z-index。

  1. figure {
  2.     margin: 0;
  3.     position: relative;
  4. }
  5. figure img {
  6.     display: block;
  7.     position: relative;
  8.     z-index: 10;
  9.     max-width: 100%;
  10.     height: auto;
  11. }
  12. figure figcaption {
  13.     display: block;
  14.     position: absolute;
  15.     z-index: 5;
  16. }
  17. figure h3 {
  18.     color: #fff;
  19.     font-size: 22px;
  20.     line-height: 1.2;
  21.     font-weight: 700;
  22.     margin-bottom: 10px;
  23. }
  24. figure span {
  25.     color: #b2cce1;
  26.     display: block;
  27.     line-height: 1.2;
  28. }
  29. figure a.close-caption {
  30.     display: block;
  31.     position: absolute;
  32.     width: 44px;
  33.     height: 44px;
  34.     text-align: center;
  35.     line-height: 44px;
  36.     font-size: 24px;
  37.     font-weight: 700;
  38.     color: #315a7d;
  39. }
  40. figure a.close-caption.hidden {
  41.     display: none
  42. }

在第一种图片标题的效果中,当我们用鼠标滑过 figure 元素,图片会向上滑动,图片标题被显露出来。这里是在鼠标滑过时使用 CSS transform 来设置 translateY。

  1. #effect-1 a.close-caption {
  2.     bottom: 10px;
  3.     right: 10px;
  4. }
  5. #effect-1 figure {
  6.     background-color: steelblue
  7. }
  8. #effect-1 figcaption {
  9.     bottom: 0;
  10.     left: 0;
  11.     width: 100%;
  12.     padding: 20px;
  13. }
  14. #effect-1 figure img {
  15.     transition: all 0.3s;
  16. }
  17. .no-touch #effect-1 figure:hover img,
  18. #effect-1 figure.hover img {
  19.     transform: translateY(-90px);
  20. }

其它几种效果的实现方法也非常简单,具体参考下载文件。

CSS3 Transitions 炫酷图片标题特效

已有 452 人购买
查看演示升级 VIP立刻购买

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

发表回复

热销模板

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

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