Skip to content

Commit

Permalink
Synching gh-pages branch with master again.
Browse files Browse the repository at this point in the history
  • Loading branch information
Dave Shea committed Aug 18, 2010
1 parent 2ff2ccb commit 48574b0
Show file tree
Hide file tree
Showing 10 changed files with 33 additions and 33 deletions.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
28 changes: 14 additions & 14 deletions demo/index.html
Expand Up @@ -4,8 +4,8 @@
<title>PaintbrushJS v0.1 Demo Page</title>
<meta charset="utf-8" />

<script type="text/javascript" src="common.js"></script>
<script type="text/javascript" src="paintbrush-0.1.js"></script>
<script type="text/javascript" src="script/common.js"></script>
<script type="text/javascript" src="script/paintbrush-0.1.js"></script>

<link rel="stylesheet" type="text/css" href="style.css" />
</head>
Expand All @@ -16,39 +16,39 @@ <h1>PaintbrushJS v0.1 Demo Page</h1>
<ul class="odd">
<li>
<figure>
<img src="example-images/240-lighthouse.jpg" width="240" height="160" alt="Point Atkinson Lighthouse">
<img src="images/240-lighthouse.jpg" width="240" height="160" alt="Point Atkinson Lighthouse">
<figcaption>Original, default (img)</figcaption>
</figure>
</li>
<li>
<figure>
<img src="example-images/240-lighthouse.jpg" class="filter-sepia" width="240" height="160" alt="Point Atkinson Lighthouse">
<img src="images/240-lighthouse.jpg" class="filter-sepia" width="240" height="160" alt="Point Atkinson Lighthouse">
<figcaption>Sepia tone, default (img)</figcaption>
</figure>
</li>
<li>
<figure>
<img src="example-images/240-lighthouse.jpg" class="filter-greyscale" width="240" height="160" alt="Point Atkinson Lighthouse">
<img src="images/240-lighthouse.jpg" class="filter-greyscale" width="240" height="160" alt="Point Atkinson Lighthouse">
<figcaption>Greyscale, default (img)</figcaption>
</figure>
</li>
</ul>
<ul>
<li>
<figure>
<img src="example-images/240-lighthouse.jpg" class="filter-tint" width="240" height="160" alt="Point Atkinson Lighthouse">
<img src="images/240-lighthouse.jpg" class="filter-tint" width="240" height="160" alt="Point Atkinson Lighthouse">
<figcaption>Tint filter, default (img)</figcaption>
</figure>
</li>
<li>
<figure>
<img src="example-images/240-lighthouse.jpg" class="filter-blur" width="240" height="160" alt="Point Atkinson Lighthouse">
<img src="images/240-lighthouse.jpg" class="filter-blur" width="240" height="160" alt="Point Atkinson Lighthouse">
<figcaption>Blur, default (img)</figcaption>
</figure>
</li>
<li>
<figure>
<img src="example-images/240-lighthouse.jpg" class="filter-noise" width="240" height="160" alt="Point Atkinson Lighthouse">
<img src="images/240-lighthouse.jpg" class="filter-noise" width="240" height="160" alt="Point Atkinson Lighthouse">
<figcaption>Noise, default (img)</figcaption>
</figure>
</li>
Expand Down Expand Up @@ -100,21 +100,21 @@ <h1>PaintbrushJS v0.1 Demo Page</h1>
<ul class="odd">
<li>
<figure>
<img src="example-images/240-road.jpg" width="240" height="160" alt="West Coast roads, New Zealand">
<img src="images/240-road.jpg" width="240" height="160" alt="West Coast roads, New Zealand">
<figcaption>Original (img)</figcaption>
</figure>
</li>
<li>
<figure>
<img src="example-images/240-road.jpg" class="filter-sepia"
<img src="images/240-road.jpg" class="filter-sepia"
data-pb-sepia-amount="0.7"
width="240" height="160" alt="West Coast roads, New Zealand">
<figcaption>Sepia tone: Amount 0.7 (img)</figcaption>
</figure>
</li>
<li>
<figure>
<img src="example-images/240-road.jpg" class="filter-greyscale"
<img src="images/240-road.jpg" class="filter-greyscale"
data-pb-greyscale-amount="0.8"
width="240" height="160" alt="West Coast roads, New Zealand">
<figcaption>Greyscale: Amount 0.8 (img)</figcaption>
Expand All @@ -124,7 +124,7 @@ <h1>PaintbrushJS v0.1 Demo Page</h1>
<ul>
<li>
<figure>
<img src="example-images/240-road.jpg" class="filter-tint"
<img src="images/240-road.jpg" class="filter-tint"
data-pb-tint-amount="0.5"
data-pb-tint-color="#009900"
width="240" height="160" alt="West Coast roads, New Zealand">
Expand All @@ -133,15 +133,15 @@ <h1>PaintbrushJS v0.1 Demo Page</h1>
</li>
<li>
<figure>
<img src="example-images/240-road.jpg" class="filter-blur"
<img src="images/240-road.jpg" class="filter-blur"
data-pb-blur-amount="0.4"
width="240" height="160" alt="West Coast roads, New Zealand">
<figcaption>Blur: Amount 0.4 (img)</figcaption>
</figure>
</li>
<li>
<figure>
<img src="example-images/240-road.jpg" class="filter-noise"
<img src="images/240-road.jpg" class="filter-noise"
data-pb-noise-amount="200"
data-pb-noise-type="colour"
width="240" height="160" alt="West Coast roads, New Zealand">
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
8 changes: 4 additions & 4 deletions demo/style.css
Expand Up @@ -67,14 +67,14 @@ canvas {
padding-top: 160px;
}
.bee {
background: url(example-images/240-bee.jpg) no-repeat 0 0;
background: url(images/240-bee.jpg) no-repeat 0 0;
}
.lighthouse {
background: url(example-images/240-lighthouse.jpg) no-repeat 0 0;
background: url(images/240-lighthouse.jpg) no-repeat 0 0;
}
.road {
background: url(example-images/240-road.jpg) no-repeat 0 0;
background: url(images/240-road.jpg) no-repeat 0 0;
}
.stones {
background: url(example-images/240-stones.jpg) no-repeat 0 0;
background: url(images/240-stones.jpg) no-repeat 0 0;
}
30 changes: 15 additions & 15 deletions demo/timed.html
Expand Up @@ -4,9 +4,9 @@
<title>PaintbrushJS v0.1 Demo Page, Timed</title>
<meta charset="utf-8" />

<script type="text/javascript" src="common.js"></script>
<script type="text/javascript" src="timing.js"></script>
<script type="text/javascript" src="paintbrush-0.1.js"></script>
<script type="text/javascript" src="script/common.js"></script>
<script type="text/javascript" src="script/timing.js"></script>
<script type="text/javascript" src="script/paintbrush-0.1.js"></script>

<link rel="stylesheet" type="text/css" href="style.css" />
</head>
Expand All @@ -17,39 +17,39 @@ <h1>PaintbrushJS v0.1 Demo Page, Timed</h1>
<ul class="odd">
<li>
<figure>
<img src="example-images/240-lighthouse.jpg" width="240" height="160" alt="Point Atkinson Lighthouse">
<img src="images/240-lighthouse.jpg" width="240" height="160" alt="Point Atkinson Lighthouse">
<figcaption>Original, default (img)</figcaption>
</figure>
</li>
<li>
<figure>
<img src="example-images/240-lighthouse.jpg" class="filter-sepia" width="240" height="160" alt="Point Atkinson Lighthouse">
<img src="images/240-lighthouse.jpg" class="filter-sepia" width="240" height="160" alt="Point Atkinson Lighthouse">
<figcaption>Sepia tone, default (img)</figcaption>
</figure>
</li>
<li>
<figure>
<img src="example-images/240-lighthouse.jpg" class="filter-greyscale" width="240" height="160" alt="Point Atkinson Lighthouse">
<img src="images/240-lighthouse.jpg" class="filter-greyscale" width="240" height="160" alt="Point Atkinson Lighthouse">
<figcaption>Greyscale, default (img)</figcaption>
</figure>
</li>
</ul>
<ul>
<li>
<figure>
<img src="example-images/240-lighthouse.jpg" class="filter-tint" width="240" height="160" alt="Point Atkinson Lighthouse">
<img src="images/240-lighthouse.jpg" class="filter-tint" width="240" height="160" alt="Point Atkinson Lighthouse">
<figcaption>Tint filter, default (img)</figcaption>
</figure>
</li>
<li>
<figure>
<img src="example-images/240-lighthouse.jpg" class="filter-blur" width="240" height="160" alt="Point Atkinson Lighthouse">
<img src="images/240-lighthouse.jpg" class="filter-blur" width="240" height="160" alt="Point Atkinson Lighthouse">
<figcaption>Blur, default (img)</figcaption>
</figure>
</li>
<li>
<figure>
<img src="example-images/240-lighthouse.jpg" class="filter-noise" width="240" height="160" alt="Point Atkinson Lighthouse">
<img src="images/240-lighthouse.jpg" class="filter-noise" width="240" height="160" alt="Point Atkinson Lighthouse">
<figcaption>Noise, default (img)</figcaption>
</figure>
</li>
Expand Down Expand Up @@ -101,21 +101,21 @@ <h1>PaintbrushJS v0.1 Demo Page, Timed</h1>
<ul class="odd">
<li>
<figure>
<img src="example-images/240-road.jpg" width="240" height="160" alt="West Coast roads, New Zealand">
<img src="images/240-road.jpg" width="240" height="160" alt="West Coast roads, New Zealand">
<figcaption>Original (img)</figcaption>
</figure>
</li>
<li>
<figure>
<img src="example-images/240-road.jpg" class="filter-sepia"
<img src="images/240-road.jpg" class="filter-sepia"
data-pb-sepia-amount="0.7"
width="240" height="160" alt="West Coast roads, New Zealand">
<figcaption>Sepia tone: Amount 0.7 (img)</figcaption>
</figure>
</li>
<li>
<figure>
<img src="example-images/240-road.jpg" class="filter-greyscale"
<img src="images/240-road.jpg" class="filter-greyscale"
data-pb-greyscale-amount="0.8"
width="240" height="160" alt="West Coast roads, New Zealand">
<figcaption>Greyscale: Amount 0.8 (img)</figcaption>
Expand All @@ -125,7 +125,7 @@ <h1>PaintbrushJS v0.1 Demo Page, Timed</h1>
<ul>
<li>
<figure>
<img src="example-images/240-road.jpg" class="filter-tint"
<img src="images/240-road.jpg" class="filter-tint"
data-pb-tint-amount="0.5"
data-pb-tint-color="#009900"
width="240" height="160" alt="West Coast roads, New Zealand">
Expand All @@ -134,15 +134,15 @@ <h1>PaintbrushJS v0.1 Demo Page, Timed</h1>
</li>
<li>
<figure>
<img src="example-images/240-road.jpg" class="filter-blur"
<img src="images/240-road.jpg" class="filter-blur"
data-pb-blur-amount="0.4"
width="240" height="160" alt="West Coast roads, New Zealand">
<figcaption>Blur: Amount 0.4 (img)</figcaption>
</figure>
</li>
<li>
<figure>
<img src="example-images/240-road.jpg" class="filter-noise"
<img src="images/240-road.jpg" class="filter-noise"
data-pb-noise-amount="200"
data-pb-noise-type="colour"
width="240" height="160" alt="West Coast roads, New Zealand">
Expand Down

0 comments on commit 48574b0

Please sign in to comment.