-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindexOld.html
114 lines (104 loc) · 3.73 KB
/
indexOld.html
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="UTF-8">
<title="Thesis">
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta name="title" content="Art By Pristique. Artificial Alchemy by Pristique">
<meta name="keywords" content="Visionary Art, Digital Alchemy, Digital Alchemist, Web Design and Development, Freelance Artist">
<meta name="author" content="McCall (Pristique) Tucker">
<meta name="description" content="Visionary Artist / Digital Alchemist from Cincinnati, OH. I specialize in web development, art, animation, graphic design, photo and video.">
<link rel="icon" type="image/png" href="images/icons/myicon.png">
<link rel="stylesheet" type="text/css" href="reset.css"/>
<link rel="stylesheet" type="text/css" href="styles.css"/>
<link rel="stylesheet" type="text/css" href="triangle.css"/>
<link rel="stylesheet" type="text/css" href="square.css"/>
<link rel="stylesheet" type="text/css" href="pentagon.css"/>
<link rel="stylesheet" type="text/css" href="hexagon.css"/>
<link rel="stylesheet" type="text/css" href="octagon.css"/>
<link rel="stylesheet" type="text/css" href="circle.css"/>
<script src="jQuery.js"></script>
</head>
<body>
<style>
body{
background-color:#180914;
background-image:url("background-images/space.jpg") !important;
background-size: cover !important;
background-repeat:no-repeat;
}
#mainPhoto{
position:absolute;
bottom:0px;
width: 800px;
margin-left: calc(50% - 400px);
}
@keyframes slide{
0%{margin-bottom:0%;}
50%{margin-bottom:50%}
1000%{margin-bottom:0%}
}
@-webkit-keyframes slide{
0%{margin-bottom:0%;}
50%{margin-bottom:50%}
1000%{margin-bottom:0%}
}
@-moz-keyframes slide{
0%{margin-bottom:0%;}
50%{margin-bottom:50%}
1000%{margin-bottom:0%}
}
</style>
<!--This website was hand-coded using html, css, and javascript! :) Thanks for looking! Please visit http://www.artbypristique.com/-->
<!--[if lt IE 9]>
<script src="bower_components/html5shiv/dist/html5shiv.js"></script>
<![endif]-->
<div id="wrapper">
<div id="content">
<div class="perspective">
<div id="triangle"></div>
<div id="square"></div>
<div id="pentagonContainer">
<div id="pentagon"></div>
</div>
<div id="hexagonContainer">
<div id="hexagon"></div>
</div>
<div id="octagonContainer">
<div id="octagon"></div>
</div>
<div id="circle">
</div>
</div><!--end perspetive-->
<img id="mainPhoto" src="eyeFULL.png" height="1000px" width="auto" alt="Eye of horus">
</div><!--end "content"-->
<div id="footer">
</div><!--end footer-->
</div><!--end "wrapper"-->
<script>
/*
$( "#triangle").click(function() {
$( this ).css({"transform":"scale(2)", "-webkit-transform": "scale(2)"});
});
$( "#triangle" ).click(function() {
$( this ).css({"-webkit-animation":"slide 5s infinite alternate !important", "animation": "slide 5s infinite alternate !important"});
});
$( "#square" ).click(function() {
$( this ).css({"-webkit-animation":"slide 5s infinite alternate !important", "animation": "slide 5s infinite alternate !important"});
});
$( "#pentagon" ).click(function() {
$( this ).css({"-webkit-animation":"slide 5s infinite alternate !important", "animation": "slide 5s infinite alternate !important"});
});
$( "#hexagon" ).click(function() {
$( this ).css({"-webkit-animation":"slide 5s infinite alternate !important", "animation": "slide 5s infinite alternate !important"});
});
$( "#octagon" ).click(function() {
$( this ).css({"-webkit-animation":"slide 5s infinite alternate !important", "animation": "slide 5s infinite alternate !important"});
});
$( "#circle" ).click(function() {
$( this ).css({"-webkit-animation":"slide 5s infinite alternate !important", "animation": "slide 5s infinite alternate !important"});
});
*/
</script>
</body>
</html>