swiper的基础使用(十七)
程序员文章站
2022-04-30 14:29:05
...
这次内容我们接着介绍在swiper页面的翻页动画--3D覆盖流效果。
首先搭建swiper页面,设置CSS样式,为了观看效果,这一章依然在slide当中添加背景图片。
首先搭建swiper页面,设置CSS样式,为了观看效果,这一章依然在slide当中添加背景图片。
<div class="swiper-container"> <div class="swiper-wrapper"> <div class="swiper-slide"><img src="logo.png"></div> <div class="swiper-slide" style="background-image:url(img/4.jpg)"></div> <div class="swiper-slide" style="background-image:url(img/5.jpg)"></div> <div class="swiper-slide" style="background-image:url(img/6.jpg)"></div> <div class="swiper-slide"><img src="logo.png"></div> </div> <div class="swiper-pagination"></div> </div>
然后与我们之前的3D方块效果使用方法一样,添加属性,并对动画进行设置。
var swiper = new Swiper('.swiper-container',{ pagination:'.swiper-pagination', grabCursor:true, centeredSlides:true, slidesPerView:'auto', effect:'coverflow', //动画效果:3D覆盖流效果 coverflow:{ rotate:50, stretch:0, depth:100, modifier:1, slideShadows:true } });
我们的动画设置当中都设置了什么呢?
coverflow:{ rotate:50, //旋转的角度 stretch:0, //拉伸 depth:100, //深度 modifier:1, //修正值(该值越大前面的效果越明显) slideShadows:true //页面阴影效果 }
最好我们的动画效果与分组显示来一起使用,单独使用效果不好。
以上就是swiper的基础使用(十七)的内容,更多相关内容请关注PHP中文网(www.php.cn)!
上一篇: php如何连接sql server,phpsqlserver
下一篇: JQ插件ajaxFileUpload、php实现图片,数据同时上传 ajaxfileupload乱码 ajaxfileupload ie8 ajaxfileupload ie
推荐阅读
-
Python机器学习基础之Numpy库的使用
-
php基础学习之变量的使用_php技巧
-
javascript中的array数组使用技巧_基础知识
-
swiper的基础使用(六)
-
php中static静态变量的使用方法详解_php基础_脚本之家
-
JavaEE基础day02 1.定义Java中的变量 四类八种 2.变量定义和使用的注意事项 3.数据类型的转换、强制数据类型转换4.算数运算符、比较运算符、逻辑运算符、赋值运算符、三元运算符
-
php的array_multisort()使用方法介绍_php基础
-
python基础(13):函数名的使用、第一类对象、闭包、迭代器
-
Mysql的基础使用之MariaDB安装方法详解_MySQL
-
Knockout text绑定DOM的使用方法_基础知识