Added download page (bland, but functional)
parent
b072ae3772
commit
2f099c78fa
|
@ -17,6 +17,7 @@
|
||||||
<div id="menu">
|
<div id="menu">
|
||||||
<ul>
|
<ul>
|
||||||
<li id="about"><a href="/">About</a></li>
|
<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="manual"><a href="man.html">Manual</a></li>
|
||||||
<li id="source"><a href="source.html">Source Code</a></li>
|
<li id="source"><a href="source.html">Source Code</a></li>
|
||||||
<li id="bugs"><a href="/bugs/">Issues / Bugs</a></li>
|
<li id="bugs"><a href="/bugs/">Issues / Bugs</a></li>
|
||||||
|
|
|
@ -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>
|
|
@ -20,10 +20,3 @@
|
||||||
degrading features (such as visibility support), but remaining
|
degrading features (such as visibility support), but remaining
|
||||||
functionally consistent.
|
functionally consistent.
|
||||||
</p>
|
</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>
|
|
||||||
|
|
17
style.css
17
style.css
|
@ -122,12 +122,14 @@ html, body {
|
||||||
|
|
||||||
#menu a:hover,
|
#menu a:hover,
|
||||||
body.index #about a,
|
body.index #about a,
|
||||||
|
body.download #download a,
|
||||||
body.man #manual a,
|
body.man #manual a,
|
||||||
body.source #source a {
|
body.source #source a {
|
||||||
background-color: #204a87;
|
background-color: #204a87;
|
||||||
}
|
}
|
||||||
|
|
||||||
body.index #about a,
|
body.index #about a,
|
||||||
|
body.download #download a,
|
||||||
body.man #manual a,
|
body.man #manual a,
|
||||||
body.source #source a {
|
body.source #source a {
|
||||||
color: #f57900;
|
color: #f57900;
|
||||||
|
@ -290,7 +292,9 @@ p.copyright a, p.copyright a:link {
|
||||||
font-family: monospace;
|
font-family: monospace;
|
||||||
}
|
}
|
||||||
|
|
||||||
blockquote.git-clone {
|
blockquote.git-clone,
|
||||||
|
blockquote.shell
|
||||||
|
{
|
||||||
font-family: fixed;
|
font-family: fixed;
|
||||||
font-weight: lighter;
|
font-weight: lighter;
|
||||||
}
|
}
|
||||||
|
@ -299,3 +303,14 @@ span.shell-start {
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/** Download **/
|
||||||
|
span.release-current {
|
||||||
|
font-size: 1.2em;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
span.release-current .version {
|
||||||
|
font-weight: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue