0

我是一个新手,还在学习,我不能完全解决问题。我在下面有这段代码,我想向滑块添加自动播放功能。将非常感谢帮助。

$('.feature-selection').click(function () {
        if (!$(this).hasClass('active-feature')) {
            var featureID = '#' + $(this).attr('data-feature-id');
            $('.active-feature').removeClass('active-feature');
            $(this).addClass('active-feature');
            $('.active-feature-detail').addClass('fadeOutLeftBig');
            setTimeout(function () {
                $('.fadeOutLeftBig').removeClass('active-feature-detail');
            }, 500);
            setTimeout(function () {
                $('.fadeOutLeftBig').removeClass('fadeOutLeftBig');
            }, 600);
            $(featureID).addClass('fadeInRightBig');
            var that = featureID;
            setTimeout(function () {
                $(that).removeClass('fadeInRightBig');
            }, 1000);
            $(featureID).addClass('active-feature-detail');
            var newFeatureHeight = $(featureID).height() + 88;

            $('#feature-detail-holder').css('min-height', newFeatureHeight);
        }
    });
4

1 回答 1

0
var interval = null;
$('#autoplay-button').click(function(){
    interval = setInterval(function(){
        $('.feature-selection').trigger('click');
    }, 10000);
});

$('#stop-autoplay-button').click(function(){
    clearInterval(interval);
});

$('.feature-selection').click(function () {
    if (!$(this).hasClass('active-feature')) {
        var featureID = '#' + $(this).attr('data-feature-id');
        $('.active-feature').removeClass('active-feature');
        $(this).addClass('active-feature');
        $('.active-feature-detail').addClass('fadeOutLeftBig');
        setTimeout(function () {
            $('.fadeOutLeftBig').removeClass('active-feature-detail');
        }, 500);
        setTimeout(function () {
            $('.fadeOutLeftBig').removeClass('fadeOutLeftBig');
        }, 600);
        $(featureID).addClass('fadeInRightBig');
        var that = featureID;
        setTimeout(function () {
            $(that).removeClass('fadeInRightBig');
        }, 1000);
        $(featureID).addClass('active-feature-detail');
        var newFeatureHeight = $(featureID).height() + 88;

        $('#feature-detail-holder').css('min-height', newFeatureHeight);
    }
});
于 2013-08-28T06:40:36.147 回答