1
0
Fork 0

Added download page (bland, but functional)

website
Mike Gerwitz 2011-12-26 23:55:33 -05:00
parent b072ae3772
commit 2f099c78fa
4 changed files with 44 additions and 8 deletions

View File

@ -17,6 +17,7 @@
<div id="menu">
<ul>
<li id="about"><a href="/">About</a></li>
<li id="download"><a href="download.html">Download</a></li>
<li id="manual"><a href="man.html">Manual</a></li>
<li id="source"><a href="source.html">Source Code</a></li>
<li id="bugs"><a href="/bugs/">Issues / Bugs</a></li>

27
download.html 100644
View File

@ -0,0 +1,27 @@
<p>
<span class="release-current">
Current Release: <span class="version">0.1.0</span>
</span>
</p>
<p>
ease.js can be downloaded in a variety of formats, depending on the
environment in which it will be used.
</p>
<ul>
<li>
<a href="/scripts/ease.min.js">Production</a>
- Minified, 7.1 kB gzipped (25 kB uncompressed)
</li>
<li>
<a href="/scripts/ease.js">Development</a>
- Unminified, 30 kB gzipped (137 kB uncompressed)
</li>
</ul>
<h3>npm</h3>
ease.js is available via npm for use with Node.js. Alternatively, one can simply
<a href="source.html">clone the repository</a> and use that directly.
<blockquote class="shell">
<span class="shell-start">$</span> npm install easejs
</blockquote>

View File

@ -20,10 +20,3 @@
degrading features (such as visibility support), but remaining
functionally consistent.
</p>
<p>
<strong>This project is under heavy development.</strong> However, the
<tt>master</tt> branch is always guaranteed to be in a working, stable
state. It is currently in use within a production system at the author's
place of employment. Feel free to use ease.js in your own projects.
</p>

View File

@ -122,12 +122,14 @@ html, body {
#menu a:hover,
body.index #about a,
body.download #download a,
body.man #manual a,
body.source #source a {
background-color: #204a87;
}
body.index #about a,
body.download #download a,
body.man #manual a,
body.source #source a {
color: #f57900;
@ -290,7 +292,9 @@ p.copyright a, p.copyright a:link {
font-family: monospace;
}
blockquote.git-clone {
blockquote.git-clone,
blockquote.shell
{
font-family: fixed;
font-weight: lighter;
}
@ -299,3 +303,14 @@ span.shell-start {
font-weight: normal;
}
/** Download **/
span.release-current {
font-size: 1.2em;
font-weight: bold;
}
span.release-current .version {
font-weight: normal;
}