jQuery Scale and Fade at the same time

后端 未结 6 1742
星月不相逢
星月不相逢 2021-02-03 13:32

So I can make a div to scale nicely from it\'s center pivot: http://jsfiddle.net/uTDay/

However, the transition starts to change when I add in content inside the div: ht

6条回答
  •  半阙折子戏
    2021-02-03 14:29

    DEMO= http://jsfiddle.net/uTDay/8/ different way:

    $(".btn a").click(function () {
        $('.box').animate({'opacity':0,'width':0,'height':0},1000);
        $('.box img').animate({'width':0,'height':0},1000);
    });
    

    ​ ​

提交回复
热议问题