summaryrefslogtreecommitdiff
path: root/share/frontend/imgrid/intro.html
diff options
context:
space:
mode:
Diffstat (limited to 'share/frontend/imgrid/intro.html')
-rwxr-xr-xshare/frontend/imgrid/intro.html106
1 files changed, 0 insertions, 106 deletions
diff --git a/share/frontend/imgrid/intro.html b/share/frontend/imgrid/intro.html
deleted file mode 100755
index 5c14969..0000000
--- a/share/frontend/imgrid/intro.html
+++ /dev/null
@@ -1,106 +0,0 @@
-<html>
-<head>
- <meta charset="utf-8" />
- <meta name="description" content="IMGRID A 3D GRID-PLANE GENERATOR" >
- <meta name="keywords" content="photoblaster, 3D" >
- <link rel="shortcut icon" href="http://asdf.us/imgrid/favicon.ico">
- <link rel="image_src" href="http://vfile.com/public/img/1.png" >
- <!--<html xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http://ogp.me/ns#" xmlns:fb="http://www.facebook.com/2008/fbml">-->
- <meta property="og:title" content="imgrid" />
- <meta property="og:type" content="website" />
- <meta property="og:url" content="http://asdf.us/imgrid" />
- <meta property="og:site_name" content="IMGRID - A 3D-GRID-PLANE GENERATOR" />
- <title>IMGRID - a 3D GRID-PLANE GENERATOR</title>
- <style type="text/css">
-html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
- border: 0pt none;
- font: inherit;
- margin: 0pt;
- padding: 0pt;
- vertical-align: baseline;
- }
-body
- {
-// background-attachment: fixed;
-// background-image: url(background.gif);
-// text-transform: uppercase;
-// background-position: center center;
- color: black;
- }
-.vlarge
- {
- font-size:22px;
- }
-.small
- {
- font-size:14px;
- }
-.large
- {
- font-size:18px;
- }
-#bg
- {
- postion:absolute;
- z-index:-1;
- }
-#athena
- {
- position:absolute;
- z-index:1;
- top: 20px;
- left: 20px;
- }
- </style>
-<link href='http://fonts.googleapis.com/css?family=Gentium+Book+Basic' rel='stylesheet' type='text/css'>
-</head>
-
-<body>
-<div id="bg">
- <div><table cellspacing=0 cellpadding=0><tr><td>
- <img src="background.gif" />
- </td></tr></table></div>
-</div>
-<div id="athena"><img src="athenafinal.gif"></img></div>
-
-</body>
-<script type="text/javascript" src="/js/jquery.js"></script>
-<script type="text/javascript">
-var intro =
- {
- step: 0,
- steps: 100,
- delta: 0.02,
- opacity: 0,
- spin: function ()
- {
- document.getElementById("bg").style.opacity = intro.opacity + intro.delta*intro.step
- if (intro.step < 10)
- intro.step += 0.2
- else
- intro.step += 3
- if (intro.step < intro.steps)
- setTimeout(intro.spin,100)
- }
- }
-var newintro =
- {
- step: 0,
- steps: 100,
- delta: 0.02,
- opacity: 0,
- spin: function ()
- {
- document.getElementById("athena").style.opacity = newintro.opacity + newintro.delta*newintro.step
- if (newintro.step < 10)
- newintro.step += 0.5
- else
- newintro.step += 3
- if (newintro.step < newintro.steps)
- setTimeout(newintro.spin,100)
- }
- }
-intro.spin()
-newintro.spin()
-</script>
-</html> \ No newline at end of file