If I want to do a simple slideDown() in jQuery, such as:
$(".zip").delay(1000).slideDown();
But I wanted to use the useTranslate3d parameter (for the jQuery.Animate-Enhanced plugin), can I simply apply the parameter to the slideDown() function, or do I need to also call the animate() function like so:
$(".zip").delay(1000).slideDown().animate({
    useTranslate3d: true,
});
Or could I simply do:
$(".zip").delay(1000).slideDown({
    useTranslate3d: true,
});