在網(wǎng)站的設(shè)計(jì)搭建中,一些客戶經(jīng)常會(huì)有想要將頁面的某些內(nèi)容重點(diǎn)突出展示的想法,比如客戶案例這類的精華內(nèi)容。
如上圖所示,我們可以給圖文組件加一個(gè)效果,達(dá)到這樣突出展示的效果,那么我們話不多說,直接進(jìn)入教程環(huán)節(jié)。
<script>
document.querySelector('.swiperxcenter')._swiperInterceptor = function(x){
x.loop = true
x.centeredSlides= true
x.watchSlidesProgress= true
x.slidesPerView= 'auto'
x.on.progress = function(progress) {
for (i = 0; i < this.slides.length; i++) {
var slide = this.slides.eq(i);
var slideProgress = this.slides[i].progress;
// 每頁顯示幾個(gè), 必須是3/5/7/9當(dāng)中一個(gè)
var number = 7;
var scale = {
3: 1.5,
5: 1.37,
7: 1.29,
9: 1.25,
}[number];
var modify
if (slideProgress > 0) {
modify = Math.pow(Math.abs(slideProgress), scale) / 2
} else {
modify = -Math.pow(Math.abs(slideProgress), scale) / 2
}
var translate = modify * 520 + 'px';
scale = 1 - Math.abs(slideProgress) / 5;
zIndex = 999 - Math.abs(Math.round(10 * slideProgress));
slide.transform('translateX(' + translate + ') scale(' + scale + ')');
slide.css('zIndex', zIndex);
slide.css('opacity', 1);
if (Math.abs(slideProgress) > 3) {
slide.css('opacity', 0);
}
}
}
x.on.setTransition= function(transition) {
for (var i = 0; i < this.slides.length; i++) {
var slide = this.slides.eq(i)
slide.transition(transition);
}
}
return x
}
</script>
<style>
.swiperxcenter {
position: relative;
/* width: 1200px; */
margin: 0 auto
}
.swiperxcenter .swiper-container{
padding: 30px 0;
}
.swiperxcenter .swiper-slide {
width: 520px;
background: #fff;
box-shadow: 0 8px 30px #ddd;
}
代碼組件設(shè)置完成以后,我們再把圖文組件的輪播效果打開,并把圖文組件的代碼標(biāo)簽設(shè)置為swiperxcenter,即可獲得這個(gè)效果了。
記得保存并發(fā)布網(wǎng)站,去查看效果哦。好了,今天的小教程就到這里了,我們下期再見吧!
常見問題