Функции jquery не работают с новостным тикером - PullRequest
2 голосов
/ 12 мая 2011

Я использую тикер новостей для раздела новостей на странице и хочу использовать плагин prettyphoto с этими новостями, но любая функция jquery не работает, когда элементы

меняют свою позицию.

Например, ни одна из функций jquery не работает, когда первый элемент становится последним

Вот коды

$(document).ready(function(){
    var first = 0;
    var speed = 1000;
    var pause = 3500;

    function removeFirst(){
       first = $('ul#listticker li:first').html();
       $('ul#listticker li:first')
        .animate({opacity: 0}, speed)
        .fadeOut('slow', function() {$(this).remove();});
       addLast(first);
    }

    function addLast(first){
        last = '<li style="display:none">'+first+'</li>';
        $('ul#listticker').append(last)
        $('ul#listticker li:last')
        .animate({opacity: 1}, speed)
        .fadeIn('slow')
    }

    interval = setInterval(removeFirst, pause);

        //Codes above are for the news ticker

    $(".news").click(function(e){
        e.preventDefault(); //I assign news class to links if there is no image for the news on db but it doesn't even work
    });

    $("#newsdiv a[rel^='gallery']").prettyPhoto({
        theme:'light_rounded'
    });
});

И результат HTML функций php

<ul id="listticker">
    <li>
        <img src="http://example.com/m.../k_haber.png"><a href="#" class="news">12.05.2011</a><span class="news-text">Some Title</span>
    </li>
    <li>
        <img src="http://example.com/../some.png"><a href="http://example.com/../news/p_some.jpg" class="news-title" rel="gallery[dd0]"> 12.05.2011</a><span class="news-text">Some Other Title</span>
    </li>
</ul>

Любая идея, что может быть причиной или как это исправить?

РЕДАКТИРОВАТЬ :
Я предполагаю, что проблема возникает из-за селектора jquery html.

Ответы [ 3 ]

0 голосов
/ 12 мая 2011

Селектор jQuery ": first" возвращает первый соответствующий элемент, а не первый дочерний элемент. Попробуйте использовать: first-child вместо.

0 голосов
/ 13 мая 2011

Я понял, что функции Jquery должны быть объявлены внутри функции, которая будет использоваться, так что, наконец, я нашел решение.

Вот коды

$(document).ready(function(){
    var first = 0;
    var speed = 1000;
    var pause = 3500;

    function removeFirst(){
       first = $('ul#listticker li:first').html();
       $('ul#listticker li:first')
        .animate({opacity: 0}, speed)
        .fadeOut('slow', function() {$(this).remove();});
       addLast(first);
    }

    function addLast(first){
        last = '<li style="display:none">'+first+'</li>';
        $('ul#listticker').append(last)
        $('ul#listticker li:last')
        .animate({opacity: 1}, speed)
        .fadeIn('slow',function(){
            $("a[rel^='gallery']").click(function() {
                $.prettyPhoto.open($(this).attr("href"),"","");
                return false;
            });
        });
        $(".news").click(function(e){
            e.preventDefault(); 
        });
    }

    interval = setInterval(removeFirst, pause);


    $("#newsdiv a[rel^='gallery']").prettyPhoto({
        theme:'light_rounded'
    });
});
0 голосов
/ 12 мая 2011

Получите ваши переменные и объявления функций вне события dom ready.http://jsfiddle.net/jfahv/

...