aboutsummaryrefslogtreecommitdiffstats
path: root/demos/effect
diff options
context:
space:
mode:
Diffstat (limited to 'demos/effect')
-rw-r--r--demos/effect/easing.html3
1 files changed, 2 insertions, 1 deletions
diff --git a/demos/effect/easing.html b/demos/effect/easing.html
index f5f30a288..11062f744 100644
--- a/demos/effect/easing.html
+++ b/demos/effect/easing.html
@@ -33,7 +33,6 @@
canvas.height = 135;
var ctx = canvas.getContext("2d");
ctx.fillStyle = "black";
- ctx.strokeStyle = "white";
ctx.beginPath();
ctx.moveTo(10, 0);
@@ -46,11 +45,13 @@
ctx.lineTo(10, 0);
ctx.fill();
+ ctx.strokeStyle = "#555";
ctx.beginPath();
ctx.moveTo(0, 100.5);
ctx.lineTo(100, 100.5);
ctx.stroke();
+ ctx.strokeStyle = "white";
ctx.lineWidth = 1.5;
ctx.beginPath();
$.each(new Array(100), function(position) {