一款基于css3的3D图片翻页切换特效_html/css_WEB-ITnose
程序员文章站
2024-02-01 22:24:58
...
今天给大家分享一款基于css3的3D图片翻页切换特效。单击图片下方的滑块会切换上方的图片。动起你的鼠标试试吧,效果图如下:
在线预览 源码下载
实现的代码。
html代码:
css3代码:
#imgdex { position: relative; -webkit-perspective: 4000px; perspective: 4000px; width: 80%; max-width: 1200px; margin: 0 auto; -webkit-transform-style: preserve-3d; transform-style: preserve-3d; font-family: Avenir, Calibri, sans-serif; padding-top: 45%; } #imgdex figure, #imgdex figure figcaption { position: absolute; -webkit-transition: 1s ease-in-out; transition: 1s ease-in-out; } #imgdex figure { top: 0; left: 120px; -webkit-transform-origin: left bottom; -ms-transform-origin: left bottom; transform-origin: left bottom; width: 70%; } #imgdex figure img { width: 100%; } #imgdex figure figcaption { bottom: 0; font-size: 1.2rem; left: -8rem; opacity: 0; } #imgdex figure:last-of-type { -webkit-transform: rotateX(5deg); transform: rotateX(5deg); box-shadow: 0px 0px 200px rgba(0,0,0,0.5); } form { text-align: center; padding-bottom: 2rem; } form input[type="range"] { width: 50%; }
js代码:
var imgdex = document.getElementById('imgdex'), figs = imgdex.querySelectorAll('figure'), imgcount = figs.length; ranger.max = imgcount; ranger.value = imgcount; for (var i = 0; i slider.oldvalue) { var rotation = parseFloat(-92 + '.' + (imgcount - slider.value)); oldimg.style.webkitTransform = 'rotateX(' + rotation + 'deg)'; oldimg.style.transform = 'rotateX(' + rotation + 'deg)'; } if (slider.value !== slider.oldvalue) { currentimg.querySelector('figcaption').style.opacity = 1; oldimg.querySelector('figcaption').style.opacity = 0; } }
上一篇: 比较实用的PHP编程技巧
推荐阅读
-
一款基于css3的3D图片翻页切换特效_html/css_WEB-ITnose
-
基于css3的3D立方体旋转特效_html/css_WEB-ITnose
-
一款纯css3实现的图片3D翻转幻灯片_html/css_WEB-ITnose
-
基于css3的文字3D翻转特效_html/css_WEB-ITnose
-
一款纯css3实现的图片3D翻转幻灯片_html/css_WEB-ITnose
-
适合移动mobile的css3弹性堆叠图片切换特效_html/css_WEB-ITnose
-
一款基于css3的散子3D翻转特效_html/css_WEB-ITnose
-
适合移动mobile的css3弹性堆叠图片切换特效_html/css_WEB-ITnose
-
一款基于css3的散子3D翻转特效_html/css_WEB-ITnose
-
基于css3的3D立方体旋转特效_html/css_WEB-ITnose