码迷,mamicode.com
首页 > 其他好文 > 详细

swiper轮播箭头垂直居中

时间:2019-10-15 19:11:26      阅读:269      评论:0      收藏:0      [点我收藏+]

标签:rev   func   img   wip   加载   react   nta   箭头   active   

取消懒加载

if ($(‘#gallery‘).length != 0) {
$(‘#gallery img‘).removeClass(‘lazyload‘).attr(‘src‘,$(‘#gallery img‘).attr(‘data-src‘));
}
if ($(‘#s7thumbs‘).length != 0) {
$(‘#s7thumbs img‘).removeClass(‘lazyload‘).attr(‘src‘,$(‘#s7thumbs img‘).attr(‘data-src‘));
}


//轮播箭头垂直居中
function reactive_gallary_arrow_top($swiper) {
var outerHeight = $($swiper).find(".swiper-wrapper").height();
var imgHeight = $($swiper).find(".swiper-slide").find("img").height();
var percentage = 0.5*imgHeight/outerHeight * 100;

var prevArrow = $($swiper).find(".prev");
var nextArrow = $($swiper).find(".next");

prevArrow.css({
"top": percentage + ‘%‘
});
nextArrow.css({
"top": percentage + ‘%‘
});
}
//swiper调用
            on: {
                imagesReady:function () {
                    reactive_gallary_arrow_top(‘#p01-s5‘);
                },
                resize:function () {
                    reactive_gallary_arrow_top(‘#p01-s5‘);
                }
            }

swiper轮播箭头垂直居中

标签:rev   func   img   wip   加载   react   nta   箭头   active   

原文地址:https://www.cnblogs.com/gduf/p/11679349.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!