Δεν είναι δυνατό να γίνει thing.animate(( "height": "auto" ));
. Αυτή είναι λοιπόν η μέθοδος του Darcy Clarke που επιτρέπει να λειτουργήσει. Βασικά κλωνοποιείτε το στοιχείο, καταργείτε τα σταθερά ύψη που προκαλεί το στοιχείο και μετράτε / αποθηκεύετε την τιμή. Στη συνέχεια, ζωντανεύει το πραγματικό στοιχείο σε αυτήν την τιμή.
jQuery.fn.animateAuto = function(prop, speed, callback)( var elem, height, width; return this.each(function(i, el)( el = jQuery(el), elem = el.clone().css(("height":"auto","width":"auto")).appendTo("body"); height = elem.css("height"), width = elem.css("width"), elem.remove(); if(prop === "height") el.animate(("height":height), speed, callback); else if(prop === "width") el.animate(("width":width), speed, callback); else if(prop === "both") el.animate(("width":width,"height":height), speed, callback); )); )
Χρήση
$(".animateHeight").bind("click", function(e)( $(".test").animateAuto("height", 1000); )); $(".animateWidth").bind("click", function(e)( $(".test").animateAuto("width", 1000); )); $(".animateBoth").bind("click", function(e)( $(".test").animateAuto("both", 1000); ));