-
Notifications
You must be signed in to change notification settings - Fork 0
/
2015-08-07.html
70 lines (68 loc) · 1.96 KB
/
2015-08-07.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
<!doctype html>
<html>
<head>
<title>2015/08/07</title>
<style type="text/css">
body {
font-family: Ultra, LeagueGothicRegular, 'helvetica neue', helvetica, arial;
font-weight: bold;
text-shadow: black 3px 3px 3px;
background-color: LightBlue;
}
.container {
position: absolute;
text-align: center;
top: 50%;
left: 50%;
-webkit-transform: translate3d(-50%, -50%, 0);
-moz-transform: translate3d(-50%, -50%, 0);
-ms-transform: translate3d(-50%, -50%, 0);
-o-transform: translate3d(-50%, -50%, 0);
transform: translate3d(-50%, -50%, 0);
}
.love {
color: rgb(204, 0, 0);
white-space: pre;
font-size: 25px;
margin-top: 20px;
}
.hi {
white-space: pre;
font-size: 25px;
margin-top: -20px;
}
.divider {
width: 80%;
height: 10px;
background-color: black;
margin: 0 auto;
}
</style>
<link rel="stylesheet" type="text/css" href="jquery.funnyText.css" />
<script src="jquery.min.js"></script>
<script type="text/javascript" src="jquery.funnyText.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('.hi').funnyText({
activeColor: '#C00',
borderColor: 'while',
fontSize: '7em',
speed: 700
});
$('.love').funnyText({
activeColor: '#C00',
borderColor: 'while',
fontSize: '7em',
speed: 700
});
});
</script>
</head>
<body>
<div class="container">
<div class="hi">Hi Jessica</div>
<!--<div class="divider"></div>-->
<div class="love">I love you!</div>
</div>
</body>
</html>