这是一款效果非常炫酷的堆叠图片展开和折叠jquery动画特效。该特效中,所有图片可以像扑克牌一样进行堆叠,在触发相应的事件之后,堆叠的图片会议动画的方式全屏展开,效果非常炫酷。
在页面底部,<body>标签结束之前,引入jquery和PerspectiveTransform.js、TweenMax.min.js文件,以及init.js文件。
1 2 3 4 | < script src = "path/to/js/jquery.min.js" ></ script > < script src = "path/to/js/PerspectiveTransform.js" ></ script > < script src = "path/to/js/TweenMax.min.js" ></ script > < script src = "path/to/js/init.js" ></ script > |
该堆叠图片的基本HTML结构如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | < div class = "t-container" > < div class = "t-content" > < img class = "t-img" src = "img/img0.jpg" alt = "" /> < div class = "cover" ></ div > </ div > < div class = "t-content" > < img class = "t-img" src = "img/img1.jpg" alt = "" /> < div class = "cover" ></ div > </ div > < div class = "t-content" > < img class = "t-img" src = "img/img2.jpg" alt = "" /> < div class = "cover" ></ div > </ div > ...... </ div > < div class = "container" > < button type = "button" class = "btn btn-primary" id = "toggle" >打开/关闭</ button > </ div > </ div > |
为该堆叠图片特效添加下面的CSS样式:
body{overflow:hidden;}
1 2 3 4 5 6 | .t-container{ position : absolute ; top : 0 ; left : 0 ;} .t-container .t-content{ position : absolute ; top : 0 ; left : 0 ; width : 400px ; height : 225px ;} .t-container .t-content img{ position : absolute ; width : 400px ; height : 225px ;} .t-container .t-content .cover{ position : absolute ; top : 0 ; left : 0 ; background-color :rgba( 0 , 0 , 0 , 0.75 ); width : 400px ; height : 225px ;} .container{ position : absolute ;-moz-transform:translateX( -50% );-ms-transform:translateX( -50% );-webkit-transform:translateX( -50% );transform:translateX( -50% ); left : 50% ; bottom : 50px ;} .container .btn{ z-index : 9999 ;} |
特别申明:
本站所有资源都是由网友投稿发布,或转载各大下载站,请自行检测软件的完整性!
本站所有资源仅供学习与参考,请勿用于商业用途,否则产生的一切后果将由您自己承担!
如有侵权请联系我们删除下架,联系方式:lei1294551502@163.com