$(function(){
$("#swiper-wrapper").html($("#strhtmltest").html());
var mySwiper = new Swiper ('.honor-banner', {
direction: 'horizontal',
loop: true,
nextButton: '.swiper-button-next',
prevButton: '.swiper-button-prev',
paginationClickable :true
})
$('.honor li .h-img').click(function(){
mySwiper.update()
var num = $(this).parent("li").index();
console.log(num)
$('.pop-honor').addClass('act').fadeIn(function(){
mySwiper.slideTo(num+1, 1000, false)
})
})
$('.pop-honor .close').click(function(){
$('.pop-honor').addClass('act').fadeOut()
})
});