+++ /dev/null
-<!doctype html>
-<html lang="en">
-<head>
- <meta charset="utf-8">
- <title>jQuery UI Draggable - Delay start</title>
- <link rel="stylesheet" href="../../themes/base/all.css">
- <script src="../../jquery.js"></script>
- <script src="../../ui/core.js"></script>
- <script src="../../ui/widget.js"></script>
- <script src="../../ui/mouse.js"></script>
- <script src="../../ui/draggable.js"></script>
- <link rel="stylesheet" href="../demos.css">
- <style>
- #draggable, #draggable2 { width: 120px; height: 120px; padding: 0.5em; float: left; margin: 0 10px 10px 0; }
- </style>
- <script>
- $(function() {
- $( "#draggable" ).draggable({ distance: 20 });
- $( "#draggable2" ).draggable({ delay: 1000 });
- $( ".ui-draggable" ).disableSelection();
- });
- </script>
-</head>
-<body>
-
-<div id="draggable" class="ui-widget-content">
- <p>Only if you drag me by 20 pixels, the dragging will start</p>
-</div>
-
-<div id="draggable2" class="ui-widget-content">
- <p>Regardless of the distance, you have to drag and wait for 1000ms before dragging starts</p>
-</div>
-
-<div class="demo-description">
-<p>Delay the start of dragging for a number of milliseconds with the <code>delay</code> option; prevent dragging until the cursor is held down and dragged a specifed number of pixels with the <code>distance</code> option. </p>
-</div>
-</body>
-</html>
<li><a href="default.html">Default functionality</a></li>
<li><a href="events.html">Events</a></li>
<li><a href="constrain-movement.html">Constrain movement</a></li>
- <li><a href="delay-start.html">Delay start</a></li>
<li><a href="snap-to.html">Snap to element or grid</a></li>
<li><a href="scroll.html">Auto-scroll</a></li>
<li><a href="revert.html">Revert position</a></li>
+++ /dev/null
-<!doctype html>
-<html lang="en">
-<head>
- <meta charset="utf-8">
- <title>jQuery UI Resizable - Delay start</title>
- <link rel="stylesheet" href="../../themes/base/all.css">
- <script src="../../jquery.js"></script>
- <script src="../../ui/core.js"></script>
- <script src="../../ui/widget.js"></script>
- <script src="../../ui/mouse.js"></script>
- <script src="../../ui/resizable.js"></script>
- <link rel="stylesheet" href="../demos.css">
- <style>
- #resizable, #resizable2 { width: 150px; height: 150px; padding: 0.5em; }
- #resizable h3, #resizable2 h3 { text-align: center; margin: 0; }
- </style>
- <script>
- $(function() {
- $( "#resizable" ).resizable({
- delay: 1000
- });
-
- $( "#resizable2" ).resizable({
- distance: 40
- });
- });
- </script>
-</head>
-<body>
-
-<h3 class="docs">Time delay (ms):</h3>
-<div id="resizable" class="ui-widget-content">
- <h3 class="ui-widget-header">Time</h3>
-</div>
-
-<h3 class="docs">Distance delay (px):</h3>
-<div id="resizable2" class="ui-widget-content">
- <h3 class="ui-widget-header">Distance</h3>
-</div>
-
-<div class="demo-description">
-<p>Delay the start of resizing for a number of milliseconds with the <code>delay</code> option; prevent resizing until the cursor is held down and dragged a specifed number of pixels with the <code>distance</code> option.</p>
-</div>
-</body>
-</html>
<li><a href="aspect-ratio.html">Preserve aspect ratio</a></li>
<li><a href="max-min.html">Maximum / minimum size</a></li>
<li><a href="constrain-area.html">Constrain resize area</a></li>
- <li><a href="delay-start.html">Delay start</a></li>
<li><a href="snap-to-grid.html">Snap to grid</a></li>
<li><a href="visual-feedback.html">Visual feedback</a></li>
<li><a href="synchronous-resize.html">Synchronous resize</a></li>
+++ /dev/null
-<!doctype html>
-<html lang="en">
-<head>
- <meta charset="utf-8">
- <title>jQuery UI Sortable - Connect lists with Tabs</title>
- <link rel="stylesheet" href="../../themes/base/all.css">
- <script src="../../jquery.js"></script>
- <script src="../../ui/core.js"></script>
- <script src="../../ui/widget.js"></script>
- <script src="../../ui/mouse.js"></script>
- <script src="../../ui/sortable.js"></script>
- <script src="../../ui/droppable.js"></script>
- <script src="../../ui/tabs.js"></script>
- <link rel="stylesheet" href="../demos.css">
- <style>
- #sortable1 li, #sortable2 li { margin: 0 5px 5px 5px; padding: 5px; font-size: 1.2em; width: 120px; }
- </style>
- <script>
- $(function() {
- $( "#sortable1, #sortable2" ).sortable().disableSelection();
-
- var $tabs = $( "#tabs" ).tabs();
-
- var $tab_items = $( "ul:first li", $tabs ).droppable({
- accept: ".connectedSortable li",
- hoverClass: "ui-state-hover",
- drop: function( event, ui ) {
- var $item = $( this );
- var $list = $( $item.find( "a" ).attr( "href" ) )
- .find( ".connectedSortable" );
-
- ui.draggable.hide( "slow", function() {
- $tabs.tabs( "option", "active", $tab_items.index( $item ) );
- $( this ).appendTo( $list ).show( "slow" );
- });
- }
- });
- });
- </script>
-</head>
-<body>
-
-<div id="tabs">
- <ul>
- <li><a href="#tabs-1">Nunc tincidunt</a></li>
- <li><a href="#tabs-2">Proin dolor</a></li>
- </ul>
- <div id="tabs-1">
- <ul id="sortable1" class="connectedSortable ui-helper-reset">
- <li class="ui-state-default">Item 1</li>
- <li class="ui-state-default">Item 2</li>
- <li class="ui-state-default">Item 3</li>
- <li class="ui-state-default">Item 4</li>
- <li class="ui-state-default">Item 5</li>
- </ul>
- </div>
- <div id="tabs-2">
- <ul id="sortable2" class="connectedSortable ui-helper-reset">
- <li class="ui-state-highlight">Item 1</li>
- <li class="ui-state-highlight">Item 2</li>
- <li class="ui-state-highlight">Item 3</li>
- <li class="ui-state-highlight">Item 4</li>
- <li class="ui-state-highlight">Item 5</li>
- </ul>
- </div>
-</div>
-
-<div class="demo-description">
-<p>Sort items from one list into another and vice versa, by dropping the list item on the appropriate tab above.</p>
-</div>
-</body>
-</html>
+++ /dev/null
-<!doctype html>
-<html lang="en">
-<head>
- <meta charset="utf-8">
- <title>jQuery UI Sortable - Delay start</title>
- <link rel="stylesheet" href="../../themes/base/all.css">
- <script src="../../jquery.js"></script>
- <script src="../../ui/core.js"></script>
- <script src="../../ui/widget.js"></script>
- <script src="../../ui/mouse.js"></script>
- <script src="../../ui/sortable.js"></script>
- <link rel="stylesheet" href="../demos.css">
- <style>
- #sortable1, #sortable2 { list-style-type: none; margin: 0; padding: 0; margin-bottom: 15px;zoom: 1; }
- #sortable1 li, #sortable2 li { margin: 0 5px 5px 5px; padding: 5px; font-size: 1.2em; width: 95%; }
- </style>
- <script>
- $(function() {
- $( "#sortable1" ).sortable({
- delay: 300
- });
-
- $( "#sortable2" ).sortable({
- distance: 15
- });
-
- $( "li" ).disableSelection();
- });
- </script>
-</head>
-<body>
-
-<h3 class="docs">Time delay of 300ms:</h3>
-
-<ul id="sortable1">
- <li class="ui-state-default">Item 1</li>
- <li class="ui-state-default">Item 2</li>
- <li class="ui-state-default">Item 3</li>
- <li class="ui-state-default">Item 4</li>
-</ul>
-
-<h3 class="docs">Distance delay of 15px:</h3>
-
-<ul id="sortable2">
- <li class="ui-state-default">Item 1</li>
- <li class="ui-state-default">Item 2</li>
- <li class="ui-state-default">Item 3</li>
- <li class="ui-state-default">Item 4</li>
-</ul>
-
-<div class="demo-description">
-<p>
- Prevent accidental sorting either by delay (time) or distance. Set a number of
- milliseconds the element needs to be dragged before sorting starts
- with the <code>delay</code> option. Set a distance in pixels the element
- needs to be dragged before sorting starts with the <code>distance</code>
- option.
-</p>
-</div>
-</body>
-</html>
<li><a href="default.html">Default functionality</a></li>
<li><a href="placeholder.html">Drop placeholder</a></li>
<li><a href="connect-lists.html">Connect lists</a></li>
- <li><a href="connect-lists-through-tabs.html">Connect lists through tabs</a></li>
<li><a href="empty-lists.html">Handle empty lists</a></li>
<li><a href="items.html">Include / exclude items</a></li>
- <li><a href="delay-start.html">Delay start</a></li>
<li><a href="display-grid.html">Display as grid</a></li>
<li><a href="portlets.html">Portlets</a></li>
</ul>