0
你可以請告訴我,當用戶點擊標籤時我們如何滑動div。我在jQuery Mobile(小提琴http://jsfiddle.net/ezanker/o9foej5L/1/)中製作演示,其中我有三個選項卡並使用它顯示轉換的選項卡,請告訴我們如何在角?我正在努力實現這一點,但我無法做到這一點,我如何在角度實現這一點?角度js幻燈片動畫div的動畫?
Plunker http://plnkr.co/edit/ornYCV15uV8lPNL1ujPL?p=preview
$(function(){
$("#owl-demo").owlCarousel({
navigation : false, // Show next and prev buttons
pagination : false, //hide pagination dots
slideSpeed : 300,
paginationSpeed : 400,
singleItem:true,
afterMove: function(){
var owl = $("#owl-demo").data('owlCarousel');
$(".tabBtn").removeClass("ui-btn-active").eq(owl.currentItem).addClass("ui-btn-active");
}
});
})