aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Code/Train/train.html')
-rw-r--r--Code/Train/train.html180
1 files changed, 180 insertions, 0 deletions
diff --git a/Code/Train/train.html b/Code/Train/train.html
new file mode 100644
index 0000000..7ae7289
--- /dev/null
+++ b/Code/Train/train.html
@@ -0,0 +1,180 @@
1<!doctype html>
2
3<html>
4
5<head>
6
7<script type="text/javascript" src="./jquery-1.10.2.min.js"></script>
8
9<script type="text/javascript" src="./alphabet.js"></script>
10
11<script type="text/javascript">
12
13var myName = "@spearmint";
14
15var red = [0, 100, 63];
16
17var orange = [40, 100, 60];
18
19var green = [75, 100, 40];
20
21var blue = [196, 77, 55];
22
23var purple = [280, 50, 60];
24
25var letterColors = [red, orange, green, blue, purple];
26
27drawName(myName, letterColors);
28
29if(10 < 3)
30
31{
32
33 bubbleShape = 'square';
34
35}
36
37else
38
39{
40
41 bubbleShape = 'circle';
42
43}
44
45bounceBubbles();
46
47</script>
48
49
50
51<script LANGUAGE="JavaScript">
52
53<!--
54
55function openwin()
56
57{
58
59window.open ('video.html', '', 'width=720, height=410, toolbar=no, menubar=no,scrollbars=no, resizable=yes, location=no, status=no')
60
61}
62
63-->
64
65</script>
66
67
68
69<script language="javascript">
70
71<!--
72
73 width = screen.width;
74
75 height = screen.height-28;
76
77 window.resizeTo(width,height);
78
79 window.moveTo(0,0);
80
81-->
82
83</script>
84
85<meta charset="utf-8">
86
87<title>Train</title>
88
89<style type="text/css">
90
91body {
92
93 background-color: #EFEEEC;
94
95 font-family: baumans;
96
97 font-style: normal;
98
99 font-weight: 400;
100
101 font-size: 36px;
102
103 background-image: url(Train.jpg);
104
105}
106
107a:link {
108
109 text-decoration: none;
110
111 color: #FFFFFF;
112
113}
114
115a:visited {
116
117 text-decoration: none;
118
119 color: #FFFFFF;
120
121}
122
123a:hover {
124
125 text-decoration: none;
126
127}
128
129a:active {
130
131 text-decoration: none;
132
133 font-style: normal;
134
135 font-weight: 400;
136
137}
138
139</style>
140
141<!--The following script tag downloads a font from the Adobe Edge Web Fonts server for use within the web page. We recommend that you do not modify it.-->
142
143<script>var __adobewebfontsappname__="dreamweaver"</script>
144
145<script src="http://use.edgefonts.net/baumans:n4:default;merienda-one:n4:default;wire-one:n4:default;aguafina-script:n4:default;almendra:n4:default;butterfly-kids:n4:default.js" type="text/javascript"></script>
146
147
148
149</head>
150
151<body>
152
153<canvas id="myCanvas"></canvas>
154
155<script type="text/javascript" src="http://s3.amazonaws.com/codecademy-content/courses/hour-of-code/js/bubbles.js"></script>
156
157<script type="text/javascript" src="main.js"></script>
158
159<p style="text-align: center; color: #FFF"><a href="http://blog.jinwei.me " target="new" >❤ティガ ずっとここにいて</a></p>
160
161<p style="text-align: center; color: #FFF; font-family: baumans; font-style: normal; font-weight: 400; font-size: 24px"><a href="#" onClick="openwin()" >Video</a></p>
162
163<audio src="I Love You.mp3" preload="auto" autoplay="true" loop="true"></audio>
164
165</video>
166
167<!-- jinwei.me Baidu tongji analytics -->
168
169<script type="text/javascript">
170
171var _bdhmProtocol = (("https:" == document.location.protocol) ? " https://" : " http://");
172
173document.write(unescape("%3Cscript src='" + _bdhmProtocol + "hm.baidu.com/h.js%3F91918ac6d6854623883a2b546ebc00ac' type='text/javascript'%3E%3C/script%3E"));
174
175</script>
176
177</body>
178
179</html>
180
Powered by cgit v1.2.3 (git 2.41.0)