如何正确打开img?

时间:2011-04-15 16:06:21

标签: javascript jquery jquery-animate

我知道unwrap()但是,我似乎无法让它发挥作用。

我双击img。它用div包装,并在此包装内的img上方插入div。这是为了动画的目的。前置div移动。

动画完成后我需要全部撤消。目前,我有一个子句,如果再次双击img,动画的div将被删除,但包装仍然存在。

这是我的代码:

$("#L .A, .B").live('dblclick', function(event) {
  if (event.type === 'dblclick') {
    if ($(this).hasClass('R')) {
      $('#Box').find('.M').remove();
    } else {
      $(this).wrap('<div class="MContain" />');
      $(this).parent().prepend('<div class="M" />');
      $(".M").stop().animate({
        marginTop: '-5px'
      }, 400).animate({
        opacity: '0'
      }, 400);
    }
    $(this).toggleClass('R');
    $('.MContain').children().unwrap();
  }
});

1 个答案:

答案 0 :(得分:1)

$(".M").stop().animate({
    marginTop: '-5px'
}, 400).animate({
    opacity: '0'
}, 400).queue(function() {
    //This will be ran after the animation is done, add your code here.
});