Flexslider has a callback API where you can execute functions after various actions:https://github.com/woothemes/FlexSlider/wiki/FlexSlider-Properties

 

I would check out the after callback and possibly the start callback and call refresh from there. For example:

 

$('#secondSlider').flexslider({

  animation: "slide",

  directionNav: false,

  controlNav: false,

  start: function() {

    $.waypoints('refresh');

  }

});

 

$.waypoints('refresh');必须加

相关文章:

  • 2022-12-23
  • 2021-10-16
  • 2022-12-23
  • 2021-05-15
  • 2022-12-23
  • 2021-07-28
  • 2021-05-23
  • 2022-12-23
猜你喜欢
  • 2021-04-19
  • 2021-12-07
  • 2021-11-21
  • 2022-01-10
  • 2021-08-05
  • 2021-06-25
  • 2021-06-10
相关资源
相似解决方案