Delayed draggable and Delayed sortable : Drag Effects « Ajax Layer « JavaScript DHTML






Delayed draggable and Delayed sortable

<!-- 

Copyright (c) 2005 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

-->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
  <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  <title>script.aculo.us functional test</title>
  <script type="text/javascript" src="./scriptaculous-js-1.6.4src/prototype.js"></script>
  <script type="text/javascript" src="./scriptaculous-js-1.6.4src/effects.js"></script>
  <script type="text/javascript" src="./scriptaculous-js-1.6.4src/dragdrop.js"></script>
  <script type="text/javascript">

   var myStartEffect = function(element) {
     element._opacity = Element.getOpacity(element);
     new Effect.Opacity(element, {duration:0.2, from:element._opacity, to:0.7});
     new Effect.Highlight(element, {});
   }

  </script>
  <style type="text/css">

   h1 {font-size: 1.2em; text-align:center;}
   li {
           margin: 5px auto;
           padding: 2px;
           width: 200px;
           text-align:center;
           list-style-type:none;
           border: 2px solid #779;
           background-color: #dde
   }
   div {
           margin: 5px auto;
           padding: 2px;
           width: 300px;
           text-align:center;
           border: 2px solid #797;
           background-color: #ded
   }

  </style>
</head>

<body>
  <h1>No delay sortable</h1>

  <ul id="sort1">
    <li id="s1_1">one</li>

    <li id="s1_2">two</li>

    <li id="s1_3">three</li>
  </ul>

  <h1>Delayed sortable (500 ms)</h1>

  <ul id="sort2">
    <li id="s2_1">one</li>

    <li id="s2_2">two</li>

    <li id="s2_3">three</li>
  </ul>

  <h1>No delay draggable</h1>

  <div id="drag1">
    Lorem ipsum
  </div>

  <h1>Delayed draggable (1000 ms)</h1>

  <div id="drag2">
    Lorem ipsum
  </div>
  
  <script type="text/javascript" charset="utf-8">
    Sortable.create('sort1', {starteffect: myStartEffect});
    Sortable.create('sort2', {starteffect:myStartEffect, delay:500});
    new Draggable('drag1', {starteffect:myStartEffect});
    new Draggable('drag2', {starteffect:myStartEffect, delay:1000});
  </script>
</body>
</html>

           
       








scriptaculous-js-1.6.4.zip( 139 k)

Related examples in the same category

1.Ghost effect for dragging
2.Drag hover effects
3.Hide component during dragging
4.Using drag and move to force the right-hand pane to scroll
5.Drag from this table, Drop on this table