diff options
author | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2009-04-23 22:24:43 +0000 |
---|---|---|
committer | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2009-04-23 22:24:43 +0000 |
commit | 5e2ed0c5411051ca95d249d7ddf8de9da2851c62 (patch) | |
tree | dd474033281797547bbff5d305a7caa434a482f7 /demos/effect | |
parent | 9571d9614c4244e48f73da37d884bcbc15433c1f (diff) | |
download | jquery-ui-5e2ed0c5411051ca95d249d7ddf8de9da2851c62.tar.gz jquery-ui-5e2ed0c5411051ca95d249d7ddf8de9da2851c62.zip |
effects: demo visualising easing functions, tuning
Diffstat (limited to 'demos/effect')
-rw-r--r-- | demos/effect/easing.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/demos/effect/easing.html b/demos/effect/easing.html index 567112ac1..8fa0ed88f 100644 --- a/demos/effect/easing.html +++ b/demos/effect/easing.html @@ -11,7 +11,7 @@ float: left;
margin-left: 10px;
width: 100px;
- height: 160px;
+ height: 120px;
}
</style>
<script type="text/javascript">
@@ -28,7 +28,7 @@ var graph = $("<div/>").addClass("graph").appendTo("#graphs");
$("<div/>").text(++i + ". " + name).appendTo(graph);
- var canvas = $("<canvas/>").appendTo(graph)[0]
+ var canvas = $("<canvas/>").width(100).height(100).appendTo(graph)[0]
canvas.width = 100;
canvas.height = 135;
var ctx = canvas.getContext("2d");
|