Поворот изображения с использованием jQuery, но привязка остается прежней

StackOverflow https://stackoverflow.com/questions/1276960

Вопрос

Я создал слайд-шоу изображений с подписями с помощью jQuery.Все изображение и заголовок окружены связанной привязкой.По какой-то причине, хотя функция слайд-шоу работает нормально, привязка остается такой же, как последняя установленная.то естьв приведенном ниже примере содержимое слайд-шоу будет ссылаться только на «shows/».

<div id="mainfeature"> 
        <a href="http://www.google.com" class="show feature">
        <img src="http://union.ic.ac.uk/arts/mtsoc/wp-content/uploads/2009/07/sweetcharity_front.png" />
        <div class="caption">
            <span class="tag">2009 Tour Show</span>
            <span class="title">Sweet Charity</span>
            <span class="detail">29th July until 8th August</span>
        </div></a>
        <a href="shows/" class="feature">
        <img src="http://union.ic.ac.uk/arts/mtsoc/wp-content/gallery/2009-forum/Picture%20044.jpg" width="650px" />
        <div class="caption">
            <span class="tag">2009 Spring Show</span>
            <span class="title">A Funny Thing Happened on the Way to the Forum</span>
            <span class="detail"></span>
        </div></a>
</div>

См. рабочий пример на http://union.ic.ac.uk/arts/mtsoc/

Чтобы вам не пришлось искать, вот javascript для слайд-шоу:

function slideShow() {

    //Set the opacity of all images to 0
    $('#mainfeature a').css({opacity: 0.0});

    //Get the first image and display it (set it to full opacity)
    $('#mainfeature a:first').css({opacity: 1.0});

    //Set the caption background to semi-transparent
    $('#mainfeature .caption').css({opacity: 0.7});

    //Call the gallery function to run the slideshow
    setInterval('main_gallery()',8000);
}

function main_gallery() {

    //if no IMGs have the show class, grab the first image
    var current = ($('#mainfeature a.show')?  $('#mainfeature a.show') : $('#mainfeature a:first'));

    //Get next image, if it reached the end of the slideshow, rotate it back to the first image
    var next = ((current.next().length) ? ((current.next().hasClass('caption'))? $('#mainfeature a:first') :current.next()) : $('#mainfeature a:first'));       

    //Set the fade in effect for the next image, show class has higher z-index
    next.css({opacity: 0.0})
    .addClass('show')
    .animate({opacity: 1.0}, 1000);

    //Hide the current image
    current.animate({opacity: 0.0}, 1000)
    .removeClass('show');

    //Set the opacity to 0
    $('#mainfeature .caption').animate({opacity: 0.0}, 500);    

    //Animate the caption, opacity to 0.7
    $('#mainfeature .caption').animate({opacity: 0.7}, 1000 );
}

Есть идеи?

Это было полезно?

Решение

Оказывается, z-индекс якоря должен был меняться при его повороте.Я сделал это, используя класс show, поэтому js не пришлось менять.

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top