]> source.dussan.org Git - jquery-ui.git/commitdiff
Effects Tests: Add shake visual test
authorMike Sherov <mike.sherov@gmail.com>
Thu, 28 Aug 2014 14:01:22 +0000 (10:01 -0400)
committerMike Sherov <mike.sherov@gmail.com>
Tue, 2 Sep 2014 23:24:48 +0000 (19:24 -0400)
Closes gh-1328

tests/visual/effects/shake.html [new file with mode: 0644]
tests/visual/index.html

diff --git a/tests/visual/effects/shake.html b/tests/visual/effects/shake.html
new file mode 100644 (file)
index 0000000..595412b
--- /dev/null
@@ -0,0 +1,99 @@
+<!doctype html>
+<html lang="en">
+<head>
+       <meta charset="utf-8">
+       <title>jQuery UI Effects Test Suite</title>
+       <link rel="stylesheet" href="effects.css">
+       <script src="../../../external/jquery/jquery.js"></script>
+       <script src="../../../ui/effect.js"></script>
+       <script src="../../../ui/effect-scale.js"></script>
+       <script src="../../../ui/effect-shake.js"></script>
+       <script>
+       $(function() {
+               $( "#btn" ).click(function() {
+                       $( ".shake" ).effect( "shake", {
+                               duration: +$( "#duration" ).val(),
+                               mode: "toggle"
+                       });
+               });
+       });
+       </script>
+       <style>
+       #inputbox {
+               background: green;
+       }
+       #selectbox {
+               background: red;
+       }
+       #divbox {
+               background: yellow;
+       }
+       #inputbox_abs {
+               background: orange;
+               position: absolute;
+               top: 500px;
+               left: 300px;
+       }
+       #divbox_abs {
+               background: purple;
+               position: absolute;
+               top: 500px;
+               left: 500px;
+       }
+       div.shake {
+               background: lightblue;
+       }
+
+       .margin {
+               margin: 3px;
+       }
+       .border {
+               border: 1px solid black;
+       }
+       .padding {
+               padding: 10px;
+       }
+       </style>
+</head>
+<body>
+
+<p>WHAT: A set of elements with various box-model properties, using the shake effect to toggle.</p>
+<p>EXPECTED: When clicking "Toggle", all elements should not change dimension nor position, aside from the expected shake animation, which should take the number of milliseconds specified to complete. At the end of the animation, all elements should hide.</p>
+<p>EXPECTED: Clicking "Toggle" a second time reverses the animation, first showing all elements at their original dimensions, and restoring them to their original state.</p>
+
+<button id="btn">Toggle</button>
+<input id="duration" value="1000">
+<div id="divbox">
+       <div class="shake margin">test</div>
+       <div class="shake border">test</div>
+       <div class="shake padding margin">test</div>
+</div>
+<div id="inputbox" class="margin">
+       <div class="shake margin">test</div>
+       <div class="shake margin border">test</div>
+       <div class="shake padding">test</div>
+       <input type="text" class="shake">
+</div>
+<div id="selectbox">
+       <div class="shake">test</div>
+       <div class="shake">test</div>
+       <div class="shake">test</div>
+       <select class="shake">
+               <option value="a">a</option>
+               <option value="abcdef">abcdef</option>
+       </select>
+</div>
+<div id="inputbox_abs" class="margin">
+       <div class="shake margin">test</div>
+       <div class="shake margin border">test</div>
+       <div class="shake padding">test</div>
+       <input type="text" class="shake">
+</div>
+<div id="divbox_abs" class="margin">
+       <div class="shake margin">test</div>
+       <div class="shake margin border">test</div>
+       <div class="shake padding">test</div>
+</div>
+
+</body>
+</html>
index 736ba31179abd74185b2e1b2db7f348f46b9ea70..9401572191838c48fdb4683d1ae7114e31e47f1f 100644 (file)
@@ -49,6 +49,7 @@
                <ul>
                        <li><a href="effects/all.html">All</a></li>
                        <li><a href="effects/scale.html">Scale</a></li>
+                       <li><a href="effects/shake.html">Shake</a></li>
                </ul>
 
                <h2>Menu</h2>