Basic use of swiper (16)

黄舟
Release: 2017-01-20 15:42:52
Original
1384 people have browsed it

In this content, we will introduce the page turning animation on the swiper page-3D box effect.

First build the swiper page and set the CSS style. In order to see the effect, this chapter still adds a background image to the slide.

Copy after login

Then initialize and add page turning animation in js. It's still an attribute, but it's a little different.

var swiper = new Swiper('.swiper-container',{ pagination:'.swiper-pagination', grabCursor:true, effect:'cube', //翻页效果:方块 cube:{ shadow:true, slideShadows:true, shadowOffset:20, shadowScale:0.94 } });
Copy after login

In addition to the directly added attributes, our page turning animation also has its own attributes, which is here

cube:{ shadow:true, //阴影效果,如果设置为false下面的就不用 slideShadows:true, //页面阴影效果 shadowOffset:20, //阴影的偏移值 shadowScale:0.94 //阴影的大小 }
Copy after login

In this way, the turning of 3D blocks is realized Page effect

The above is the content of the basic use of swiper (16). For more related content, please pay attention to the PHP Chinese website (m.sbmmt.com)!


Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!