jQuery中 如何在使用.css()的时候有过渡效果

2024-11-22 14:33:14
推荐回答(1个)
回答(1):

 // 逐渐增加div的大小
 
  $("div").click(function() {
    $(this).css({
      width: function(index, value) {
        return parseFloat(value) * 1.2;
      }, 
      height: function(index, value) {
        return parseFloat(value) * 1.2;
      }
    });
  });