-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.php
More file actions
executable file
·46 lines (32 loc) · 865 Bytes
/
contact.php
File metadata and controls
executable file
·46 lines (32 loc) · 865 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?php
include($root."header.php");
?>
<body>
<div id="wrapper">
<?php include "menu.php"; ?>
<div id="container">
<?php include "sidemenu.php"?>
<div id="infotext">
<?php
contact();
?>
</div>
</div>
</div>
<script type="text/javascript">
//fade screen out
$(document).ready(function() {
$("body").css("display", "none");
$("body").fadeIn(1000);
$(".transition").click(function(event){
event.preventDefault();
linkLocation = this.href;
$("body").fadeOut(1000, redirectPage);
});
function redirectPage() {
window.location = linkLocation;
}
});
</script>
</body>
</html>