Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Flexslider jQuery プラグイン、1.8 バージョンについて質問があります。手動でスライドに移動するにはどうすればよいですか? コードを検索して見つけましたが、正しく動作しません。
$('.flexslider').slider.flexAnimate(2, true);
「$(".flexslider").flexAnimate は関数ではありません」というエラーが表示される
次のように 3 番目のスライドに移動できます。
var slider = $('#your-slider').data('flexslider'); slider.flexAnimate(2);
そして、このようにも:
$('#your-slider').flexslider(2);