aboutsummaryrefslogtreecommitdiffstats
path: root/demos/effect
diff options
context:
space:
mode:
authorRichard Worth <rdworth@gmail.com>2009-05-22 03:29:00 +0000
committerRichard Worth <rdworth@gmail.com>2009-05-22 03:29:00 +0000
commit5f830184701efea9138cc8adfceaeea31308cf6a (patch)
treea11f81edf9ff6d2416cd55cf52ef6e873b59e565 /demos/effect
parent7f2cbf8ae6c75566a4b7b71c0e2f5f661ba65ed5 (diff)
downloadjquery-ui-5f830184701efea9138cc8adfceaeea31308cf6a.tar.gz
jquery-ui-5f830184701efea9138cc8adfceaeea31308cf6a.zip
eol-style and mime-type
Diffstat (limited to 'demos/effect')
-rw-r--r--demos/effect/easing.html182
1 files changed, 91 insertions, 91 deletions
diff --git a/demos/effect/easing.html b/demos/effect/easing.html
index 3e6673bb7..ba0887c29 100644
--- a/demos/effect/easing.html
+++ b/demos/effect/easing.html
@@ -1,91 +1,91 @@
-<!doctype html>
-<html lang="en">
-<head>
- <title>jQuery UI Effects - Effect Demo</title>
- <link type="text/css" href="../../themes/base/ui.all.css" rel="stylesheet" />
- <script type="text/javascript" src="../../jquery-1.3.2.js"></script>
- <script type="text/javascript" src="../../ui/effects.core.js"></script>
- <link type="text/css" href="../demos.css" rel="stylesheet" />
- <style type="text/css">
- .graph {
- float: left;
- margin-left: 10px;
- }
- </style>
- <script type="text/javascript">
- $(function() {
- if (!$("<canvas/>")[0].getContext) {
- $("<div/>").text("Your browser doesn't support canvas, which is required for this demo. Give Firefox 3 a try!").appendTo("#graphs");
- return;
- }
- var i = 0;
- var width = 100,
- height = 100;
- $.each($.easing, function(name, impl) {
- // skip linera/jswing and any non functioning implementation
- if (!$.isFunction(impl) || /linear|jswing/.test(name))
- return;
- var graph = $("<div/>").addClass("graph").appendTo("#graphs");
- var text = $("<div/>").text(++i + ". " + name).appendTo(graph);
-
- var canvas = $("<canvas/>").appendTo(graph)[0]
- canvas.width = width;
- canvas.height = height;
- var drawHeight = height * 0.75;
- var cradius = 10;
- var ctx = canvas.getContext("2d");
- ctx.fillStyle = "black";
-
- ctx.beginPath();
- ctx.moveTo(cradius, 0);
- ctx.quadraticCurveTo(0, 0, 0, cradius);
- ctx.lineTo(0, height - cradius);
- ctx.quadraticCurveTo(0, height, cradius, height);
- ctx.lineTo(width - cradius, height);
- ctx.quadraticCurveTo(width, height, width, height - cradius);
- ctx.lineTo(width, 0);
- ctx.lineTo(cradius, 0);
- ctx.fill();
-
- ctx.strokeStyle = "#555";
- ctx.beginPath();
- ctx.moveTo(0, drawHeight + .5);
- ctx.lineTo(width, drawHeight + .5);
- ctx.stroke();
-
- ctx.strokeStyle = "white";
- ctx.lineWidth = 2;
- ctx.beginPath();
- $.each(new Array(width), function(position) {
- ctx.lineTo(position, drawHeight - position * impl(0, position, 0, 1, height) * 0.75);
- });
- ctx.stroke();
- graph.click(function() {
- $(canvas).animate({height: "hide"}, "slow", name).animate({"left": "0"}, 800).animate({height: "show"}, "slow", name);
- });
-
- graph.width(width).height(height + text.height() + 10);
- //return false;
- });
- });
- </script>
-</head>
-<body>
-
-<div class="demo">
-
- <div id="graphs"></div>
-
- <div id="animted"></div>
-
-</div><!-- End demo -->
-
-<div class="demo-description">
-
-<p><strong>All easings provided by jQuery UI are drawn above, using a HTLM canvas element</strong>. Click a diagram to see the easing in action.</p>
-
-</div><!-- End demo-description -->
-
-</body>
-</html>
-
+<!doctype html>
+<html lang="en">
+<head>
+ <title>jQuery UI Effects - Effect Demo</title>
+ <link type="text/css" href="../../themes/base/ui.all.css" rel="stylesheet" />
+ <script type="text/javascript" src="../../jquery-1.3.2.js"></script>
+ <script type="text/javascript" src="../../ui/effects.core.js"></script>
+ <link type="text/css" href="../demos.css" rel="stylesheet" />
+ <style type="text/css">
+ .graph {
+ float: left;
+ margin-left: 10px;
+ }
+ </style>
+ <script type="text/javascript">
+ $(function() {
+ if (!$("<canvas/>")[0].getContext) {
+ $("<div/>").text("Your browser doesn't support canvas, which is required for this demo. Give Firefox 3 a try!").appendTo("#graphs");
+ return;
+ }
+ var i = 0;
+ var width = 100,
+ height = 100;
+ $.each($.easing, function(name, impl) {
+ // skip linera/jswing and any non functioning implementation
+ if (!$.isFunction(impl) || /linear|jswing/.test(name))
+ return;
+ var graph = $("<div/>").addClass("graph").appendTo("#graphs");
+ var text = $("<div/>").text(++i + ". " + name).appendTo(graph);
+
+ var canvas = $("<canvas/>").appendTo(graph)[0]
+ canvas.width = width;
+ canvas.height = height;
+ var drawHeight = height * 0.75;
+ var cradius = 10;
+ var ctx = canvas.getContext("2d");
+ ctx.fillStyle = "black";
+
+ ctx.beginPath();
+ ctx.moveTo(cradius, 0);
+ ctx.quadraticCurveTo(0, 0, 0, cradius);
+ ctx.lineTo(0, height - cradius);
+ ctx.quadraticCurveTo(0, height, cradius, height);
+ ctx.lineTo(width - cradius, height);
+ ctx.quadraticCurveTo(width, height, width, height - cradius);
+ ctx.lineTo(width, 0);
+ ctx.lineTo(cradius, 0);
+ ctx.fill();
+
+ ctx.strokeStyle = "#555";
+ ctx.beginPath();
+ ctx.moveTo(0, drawHeight + .5);
+ ctx.lineTo(width, drawHeight + .5);
+ ctx.stroke();
+
+ ctx.strokeStyle = "white";
+ ctx.lineWidth = 2;
+ ctx.beginPath();
+ $.each(new Array(width), function(position) {
+ ctx.lineTo(position, drawHeight - position * impl(0, position, 0, 1, height) * 0.75);
+ });
+ ctx.stroke();
+ graph.click(function() {
+ $(canvas).animate({height: "hide"}, "slow", name).animate({"left": "0"}, 800).animate({height: "show"}, "slow", name);
+ });
+
+ graph.width(width).height(height + text.height() + 10);
+ //return false;
+ });
+ });
+ </script>
+</head>
+<body>
+
+<div class="demo">
+
+ <div id="graphs"></div>
+
+ <div id="animted"></div>
+
+</div><!-- End demo -->
+
+<div class="demo-description">
+
+<p><strong>All easings provided by jQuery UI are drawn above, using a HTLM canvas element</strong>. Click a diagram to see the easing in action.</p>
+
+</div><!-- End demo-description -->
+
+</body>
+</html>
+