jquery setinterval не работает - PullRequest
0 голосов
/ 24 июля 2011

У меня есть это:

    $("#nav-reflection li").append("<span></span>");    

    // Animate buttons, move reflection and fade

    $("#nav-reflection a").hover(function() {
        $(this).stop().animate({ marginTop: "-10px" }, 200);
        $(this).parent().find("span").stop().animate({ marginTop: "18px", opacity: 0.25 }, 200);
    },function(){
        $(this).stop().animate({ marginTop: "0px" }, 300);
        $(this).parent().find("span").stop().animate({ marginTop: "1px", opacity: 1 }, 300);
    });

/* =Shadow Nav
-------------------------------------------------------------------------- */

    // Append shadow image to each LI

    $("#nav-shadow li").append('<img class="shadow" src="http://admin.focuswebmedia.com/wp-content/themes/fwm/images/icons-shadow.jpg" width="79" height="19" alt="" />');
    //$("#slider_right").append('<div id="porfolio_contact_text">Our Porfolio&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Contact Us</div>');
    // Animate buttons, shrink and fade shadow

    $("#nav-shadow li").hover(function() {
        var e = this;
        $(e).find("a").stop().animate({ marginTop: "-14px" }, 250, function() {
            $(e).find("a").animate({ marginTop: "-10px" }, 250);
        });
        $(e).find("img.shadow").stop().animate({ width: "80%", height: "20px", marginLeft: "8px", opacity: 0.25 }, 250);
    },function(){
        var e = this;
        $(e).find("a").stop().animate({ marginTop: "4px" }, 250, function() {
            $(e).find("a").animate({ marginTop: "0px" }, 250);
        });
        $(e).find("img.shadow").stop().animate({ width: "100%", height: "27px", marginLeft: "0", opacity: 1 }, 250);
    });

отлично работает при наведении.Но как мне заставить это играть автоматически каждые приблизительно 5 секунд?Я попробовал это:

window.setInterval(play_ani, 5000);

function play_ani() {
 $j("#nav-reflection a").mouseover();
}

Но ничего не происходит ... Есть идеи?

Ответы [ 2 ]

1 голос
/ 24 июля 2011

Вы можете просто вызвать событие наведения:

window.setInterval(play_ani, 5000);

function play_ani() {
 $("#nav-reflection a").trigger('mouseover');
}

Я думаю, что ваш код ничего не делает, потому что вы не запускаете эффект.

ОБНОВЛЕНИЕ - вы должны активировать указатель мыши и использовать $ not $ j - пример скрипты: http://jsfiddle.net/nicolapeluchetti/qdwZN/3/

0 голосов
/ 24 июля 2011

Вы должны вызвать событие mmouseenter.

Однако было бы лучше перенести этот код в отдельную функцию и вызывать его из обоих мест:

function play(elem) {
    elem.stop().animate({ marginTop: "-10px" }, 200);
    elem.parent().find("span").stop().animate({ marginTop: "18px", opacity: 0.25 }, 200);

$("#nav-reflection a").hover(function() {
    play($(this));
}, function(){
    $(this).stop().animate({ marginTop: "0px" }, 300);
    $(this).parent().find("span").stop().animate({ marginTop: "1px", opacity: 1 }, 300);
});

setInterval(function() { play($("#nav-reflection a"); }, 5000);
...