Advertisement
Guest User

Untitled

a guest
Feb 24th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // Handles Contact Form Popup
  2.  
  3. $("#open_form").click(function(){
  4.     "use strict";
  5.     $("#dialog_contact_background").fadeIn(300, "easeInOutSine");
  6.     $("#dialog_contact").delay(150).slideDown(300,"easeInOutSine");
  7.    
  8. });
  9.  
  10. $("#dialog_contact_background").click(function(){
  11.     "use strict";
  12.     $("#dialog_contact_background").fadeOut(300, "easeInOutSine");
  13.     $("#dialog_contact").slideDown(300,"easeInOutSine");
  14.    
  15. });
  16.  
  17.  
  18.  
  19.  
  20.  
  21.  
  22. // Handles Map Popup
  23.  
  24.  
  25. $("#open_map").click(function(){
  26.     "use strict";
  27.     $("#dialog_map_background").fadeIn(300, "easeInOutSine");
  28.     $("#dialog_map").delay(150).slideDown(300,"easeInOutSine");
  29.    
  30. });
  31.  
  32. $("#open_form").click(function(){
  33.     "use strict";
  34.     $("#dialog_map_background").fadeIn(300, "easeInOutSine");
  35.     $("#dialog_map").delay(150).slideDown(300,"easeInOutSine");
  36.    
  37. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement