Jquery: animate .outerWidth()?

前端 未结 1 1248
甜味超标
甜味超标 2020-12-18 17:10

When animating a width toggle, it\'s not animating the padding, so i looked into .outerWidth() but i\'m not exactly sure how to implement this...

$(\'#shareh         


        
1条回答
  •  失恋的感觉
    2020-12-18 17:47

    Animate only works on css properties. Im not sure what the toggle key word does but i assume its shortand for alternating hide/show keyword. you could try:

    $('#shareheart').click(function(){
        $('.share-text').animate({
          width: 'toggle', 
         'padding-left': 'toggle', 
         'padding-right': 'toggle'
        }, 2000);
    });
    

    But im not sure how toggle will work with the padding...

    0 讨论(0)
提交回复
热议问题