From 35186a9a39815543ffca5a53dff710f3821aa848 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=B6rn=20Zaefferer?= Date: Thu, 23 Apr 2009 22:21:32 +0000 Subject: [PATCH] effects: demo visualising easing functions, tuning --- demos/effect/easing.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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) { -- 2.39.5