input輸入框點(diǎn)擊沒(méi)有反應(yīng),也不調(diào)用鍵盤,PC端沒(méi)問(wèn)題
//全屏滾動(dòng)
var mySwiper = new Swiper('.swiper-container',{
pagination: '.pagination',
mode: 'vertical',
onSlideChangeStart: function(swiper){
//動(dòng)畫
var curpage = mySwiper.activeIndex;
if(!$(".slide"+curpage).hasClass("slide"+curpage+"-show")){
$(".slide"+curpage).addClass("slide"+curpage+"-show");
}
$(".slide"+(curpage-1)).removeClass("slide"+(curpage-1)+"-show");
$(".slide"+(curpage+1)).removeClass("slide"+(curpage+1)+"-show");
}
})
js初始化之后就不能輸入了
Following the voice in heart.