Slide in/out dialog : UI Dialog « jQuery « JavaScript DHTML






Slide in/out dialog

 
<html>
  <head>
    <script type='text/javascript' src='js/jquery-1.3.2.js'></script>
    <script type='text/javascript'>
$(document).ready(
  function() {
    $('input#tmpOpen').click(
      function($e) {
        $('div#tmpDialogue').slideDown(5000);
      }
    );
    
    $('input#tmpClose').click(
      function($e) {      
        $('div#tmpDialogue').slideUp(5000);
      }
    );
  }
);
    </script>
    <style type='text/css'>
div#tmpDialogue {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 200px;
    margin: -100px 0 0 -250px;    
    background: rgb(233, 233, 233);
    border: 1px solid rgb(128, 128, 128);
}
div#tmpButtons {
    position: absolute;
    bottom: 5px;
    right: 5px;
}
    </style>
  </head>
  <body>
     <input type='submit' id='tmpOpen' value='Open' />
     <div id='tmpDialogue'>
       <p>
         Dialog content
       </p>
       <div id='tmpButtons'>
         <input type='submit' id='tmpClose' value='Close' />
       </div>
     </div>
  </body>
</html>

   
  








Related examples in the same category

1.jQuery UI Dialog
2.Basic Dialog modal
3.Modal confirmation
4.Modal form
5.Modal message
6.Set dialog height
7.Add ok button to dialog and link with event handler
8.Dialog open event
9.Dialog closed event
10.Dialog animation: close
11.Open a dialog through a button click event
12.Close a button after pressing OK button
13.Set auto open to true
14.Destroy a dialog
15.Get the input value from a dialog
16.background: '#fff', opacity: '0.7'
17.resizable: false, draggable: false
18.show: 'explode'
19.Closed action