我喜欢 iDangerous 刷卡器,我在其他项目中使用过主刷卡器和垂直刷卡器,它们运行良好。在这种情况下,我正在尝试使用电影应用程序版本,但似乎无法正常工作。我正在使用我的 html 底部的脚本,并且我的 html 与演示的匹配,这是我正在使用的脚本:
<script type="text/javascript">
$(function(){
var swiperMovies = $('.mc-posters').swiper({
mode : "horizontal",
onlyExternal : true,
speed:1000
});
var allowMovieClick = true
var swiperMControl = $('.mc-control').swiper({
mode : "horizontal",
scrollContainer:true,
onTouchMove : function(){
allowMovieClick = true
},
onTouchEnd : function() {
setTimeout(function(){allowMovieClick = true},100)
}
});
$('.mc-control img').bind('mousedown',function(e){
e.preventDefault()
})
$('.mc-control img').bind('click',function(e){
e.preventDefault()
if (!allowMovieClick) return;
var index = $(this).index()
swiperMovies.swipeTo ( index )
$('.mc-control .active').removeClass('active')
$(this).addClass('active')
});
})
我会很感激任何帮助。