在这里,我使用http://specious.github.io/cloud9carousel/滑块,我想在图像在正面旋转时添加活动类。
问问题
637 次
2 回答
0
您可以添加我使用的“onRendered”回调函数并为我工作
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');
}
于 2017-03-30T21:46:07.567 回答