-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
35 lines (31 loc) · 950 Bytes
/
index.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Nekrofilth</title>
<meta name="description" content="Nekrofilth">
<meta name="author" content="Zack Rose">
<link rel="stylesheet" href="css/style.css">
<script src="js/jquery-2.1.4.js"></script>
<script>
$(document).ready(function() {
$('a.siteintro').click(function(e){
e.preventDefault();
var urlBase = window.location.href.substring(0, location.href.lastIndexOf("/")+1)
var gotolink = urlBase + $(this).attr('href');
$("body").animate({backgroundColor: "#000000", opacity: 0 }, 1500, function() {
window.location = gotolink
});
});
});
</script>
</head>
<body class="siteintro">
<?php include_once("analyticstracking.php") ?>
<main>
<a class="siteintro" href="store.php?directed=landing">
<img src="images/backgrounds/devilsbreath-logo.jpg" />
</a>
</main>
</body>
</html>