-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathindex.html
98 lines (88 loc) · 3.88 KB
/
index.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
<html>
<head>
<meta name="author" content="choyiny">
<meta name="keywords" content="full stop, period, afullstop, remind, not a period">
<meta name="description" content="The website is to remind people that ' . ' is called a full stop and not a period, full stop.">
<title>This is a Full Stop.</title>
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-T8Gy5hrqNKT+hzMclPo118YTQO6cYprQmhrYwIiQ/3axmI1hQomh7Ud2hPOy8SP1" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css" />
<link href="https://fonts.googleapis.com/css?family=Playfair+Display" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Amatic+SC" rel="stylesheet">
</head>
<style>
.wrapper {
display: table;
height: 100%;
width: 100%;
}
.wrap {
display: table-cell;
vertical-align: middle;
padding-left: 100px;
}
.wrap h1 {
color: white;
font-size: 40px;
font-family: 'Amatic SC', cursive;
}
.wrap a {
font-family: 'Amatic SC', cursive;
color: white;
font-size: 25px;
margin-left: 390px;
text-decoration: none;
}
body{
background: linear-gradient(300deg, #360033, #0b8793, #a83279, #cea163, #90e3f9, #556270, #c45252,#B993D6, #1a2980, #26d0ce);
background-size: 2200% 2200%;
-webkit-animation: colorChange 60s ease infinite;
-moz-animation: colorChange 60s ease infinite;
-o-animation: colorChange 60s ease infinite;
animation: colorChange 60s ease infinite;
}
@-webkit-keyframes colorChange {
0%{background-position:0% 49%}
50%{background-position:100% 52%}
100%{background-position:0% 49%}
}
@-moz-keyframes colorChange {
0%{background-position:0% 49%}
50%{background-position:100% 52%}
100%{background-position:0% 49%}
}
@-o-keyframes colorChange {
0%{background-position:0% 49%}
50%{background-position:100% 52%}
100%{background-position:0% 49%}
}
@keyframes colorChange {
0%{background-position:0% 49%}
50%{background-position:100% 52%}
100%{background-position:0% 49%}
}
</style>
<body>
<a href="https://github.com/choyiny/afullstop/"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://camo.githubusercontent.com/38ef81f8aca64bb9a64448d0d70f1308ef5341ab/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f6461726b626c75655f3132313632312e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"></a>
<div class="wrapper">
<div class="wrap">
<h1 class="title"><span id="nametext">Anonymous,</span></h1>
<h1 class="title">This is a full stop, not a period, full stop.</h1>
<a href="pages/textAnimation.html">Really?</a>
</div>
</div>
</body>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function () {
// Modifies page content according the URL visited
var name = 'Hello,'
var url = window.location.href;
name = url.match(/name=(.*)/)[1];
var text = document.getElementById("nametext");
text.innerHTML = name + ",";
})
</script>
</html>