There is no response when clicking the input box, and the keyboard is not called. There is no problem on the PC side
//全屏滚动
var mySwiper = new Swiper('.swiper-container',{
pagination: '.pagination',
mode: 'vertical',
onSlideChangeStart: function(swiper){
//动画
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初始化之后就不能输入了
Blocked. . . . . Why is there no problem with the PC? It’s strange. . . .