Guest User

Untitled

a guest
Jan 19th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. $(function() {
  2. $( ".quintoModal" ).dialog({
  3. width: 450,
  4. autoOpen: false,
  5. position: { my: "left top", at: "left top+50"},
  6. show: {
  7. effect: "slide",
  8. duration: 1200,
  9. easing:"easeOutExpo",
  10. direction:"left",
  11. distance:800,
  12. },
  13. hide: {
  14. effect: "slide",
  15. duration: 1000,
  16. easing:"easeInExpo",
  17. direction:"left",
  18. distance:800,
  19. },
  20. });
  21. $( ".opener5" ).click(function() {
  22. $( ".quintoModal" ).dialog( "open");
  23. $( ".quintoModal" ).dialog( "option", "resizable", false );
  24. $( ".quintoModal" ).dialog( "option", "draggable", false );
  25.  
  26. $(".voltar").click(function () {
  27. $( ".quintoModal" ).dialog( "close" );
  28. });
  29. });
  30. });
  31.  
  32. });
  33. });
  34. });
Add Comment
Please, Sign In to add comment