Mochkit JavaScript DHTML



        "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">

  
    Test Drag and drop with MochiKit
    
    
.drag {
    background-color: blue;
    width: 100px;
    padding: 5px;
    margin: 10px;
    border: 1px solid black;
}
#dropzones {
    margin-top: 100px;
    display: inline;
}
.drop {
    background-color: red;
    width: 100px;
    padding: 5px;
    margin: 10px;
    border: 1px solid black;
    display: inline;
}
.droptrans {
    width: 100px;
    padding: 5px;
    margin: 10px;
    border: 1px solid black;
}
.drop-hover {
    border: 2px solid green;
}
.drop-active {
    background-color: #FF79ED;
}
.drag-select {
    background-color: green;
}
#drag-5 {
    position: fixed;
    top: 100px;
    left: 200px;
}
#drag-6 {
    position: absolute;
    top: 100px;
    left: 350px;
}
#drag-7 {
    position: relative;
    top: -100px;
    left: 500px;
}
#drop-6 {
    display: inline;
}
#droptext {
    margin-top: 20px;
    border: 1px dashed black;
    padding: 10px;
}
    
    
    
    
    
    
    
  
  
    

Drag and Drop examples.


    

        test drag 1

        test drag 2 (horizontal)

        test drag 3 (vertical)

        test drag 4 (selectclass)

        test drag 5 (fixed)
        test drag 6 (absolute)
        test drag 7 (relative)
        test drag 8 (handle)
        handle for drag 8
    
    
        test drop 1
        test drop 2 (hoverclass)
        test drop 3 (activeclass)
        test drop 4 (hoverFunc)
        test drop 5 (activeFunc)
        test drop 6
        No select
    
    
    
    
    

    Links to other samples:
    

        
  • Boxes DND

  •     
  • Hoverclass DND

  •     
  • Snap DND

  •     
  • Ghost DND

  •     
  • Scroll DND

  •     
  • Full DND

  •