ここで私はhttp://specious.github.io/cloud9carousel/スライダーを使用しています 画像が正面に回転するときにアクティブクラスを追加したいと思います。あなたが追加することができますJquery Animationクラウド9カルーセルアクティブクラスを追加
0
A
答えて
0
は、私はそれを使用して、バージョン2.2.0のように、原因の人気の需要に私のために
var showcase = $("#showcase")
var card = $("#showcase .card")
showcase.Cloud9Carousel({
yOrigin: 42,
yRadius: 40,
itemClass: "card",
buttonLeft: $(".nav2.prev"),
buttonRight: $(".nav2.next"),
bringToFront: true,
onRendered: showcaseUpdated,
onLoaded: function() {
showcase.css('visibility', 'visible')
showcase.css('display', 'none')
showcase.fadeIn(1500)
}
})
function showcaseUpdated(showcase) {
$(card).removeClass('active');
var index = showcase.nearestIndex();
$(showcase.items[index].element).addClass('active');
}
1
作業、frontItemClass
プロパティを経由してお好みのクラス名を提供するコールバック関数 を「onRendered」automatically tags最前面の項目:
var carousel = $("#carousel")
carousel.Cloud9Carousel({
// ...
frontItemClass: "active"
})
Live demo on JS Bin
関連する問題
- 1. クラウド9ルビー記事
- 2. jquery animation
- 3. jQueryをクラウド9プラグインで使用するには?
- 4. クラウド9でのデータベースのサポート
- 5. 更新クエリは、クラウド9コマンドライン
- 6. jquery infite animation loop
- 7. jQuery Preloader Animation
- 8. JQuery Slide Animation + CSS
- 9. jQuery stop animationメソッド
- 10. jQuery Isotope Animation Delay
- 11. jquery animation on scroll
- 12. IE9 jquery animation problem、
- 13. jQuery Tab Fade Animation
- 14. jQuery Animation Delay
- 15. Jquery DIV Animation
- 16. jQuery animation of maxHeight
- 17. jQuery Stop Animation
- 18. Jquery animation pagePiling
- 19. Jquery Loop Animation fadeIn
- 20. Jquery Animation Troubles
- 21. jQuery Simulatenous animation
- 22. jQuery animation lags
- 23. JQuery AJAX/Animation Control Flow
- 24. Jquery Animation not working width%
- 25. jQuery number animation for 3,450.86
- 26. カスタムモジュールにメニューを追加するodoo 9
- 27. message_post odooにメッセージを追加9
- 28. Odoo 9グリッドビューに列を追加する
- 29. iOS 9アプリに「クイックアクション」を追加する
- 30. XCode 9にPDFKitパレットを追加する
これまでに試したことのあるサンプルを追加してください。 –
私はこのプラグインを使用していますが、アクティブなクラスを表示することができません 私は正面に来ている画像をCSSにしたい、 –