简体   繁体   中英

Effect on close for jQuery UI dialog

I'm using the following code for managing the jQuery UI dialog:

$("#mydialog").dialog({
      autoOpen: false,
      title: "myDialog",
      modal: true,
      width: "800",
      hide: null,
      open: function(event, ui){  
        //some code
    },
     close: function(event, ui){ 
        $("#mydialog").dialog("option", "fade", null);       
    }
});

And then I open the dialog calling this code:

$("#mydialog").dialog("option", {
    modal: true
}).dialog("open");

This works fine, but I can't see any effect when I close the dialog.

How modify my code in order to obtain this result?

If i understand correctly you want your dialog to close with a fading effect.

    $("#mydialog").dialog({
    autoOpen: false,
    title: "myDialog",
    modal: true,
    width: "800",
    hide: { effect: "fade", duration: 200 } //put the fade effect
});

The trick here is to have dialog actually close after fading process finishes, not before it.

Try closing dialog using this code, it should do the trick:

$("#mydialog").fadeTo('slow', 0, function() {
  $("#mydialog").dialog('close');
});

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM