2010-03-12 03:18:34 +00:00
<!DOCTYPE html>
2009-01-16 21:46:30 +00:00
< html lang = "en" >
< head >
2010-09-10 13:38:42 +00:00
< meta charset = "utf-8" >
2009-01-16 21:46:30 +00:00
< title > jQuery UI Droppable - Visual feedback< / title >
2010-09-10 13:38:42 +00:00
< link rel = "stylesheet" href = "../../themes/base/jquery.ui.all.css" >
2012-03-22 13:45:22 +00:00
< script src = "../../jquery-1.7.2.js" > < / script >
2010-09-10 13:38:42 +00:00
< script src = "../../ui/jquery.ui.core.js" > < / script >
< script src = "../../ui/jquery.ui.widget.js" > < / script >
< script src = "../../ui/jquery.ui.mouse.js" > < / script >
< script src = "../../ui/jquery.ui.draggable.js" > < / script >
< script src = "../../ui/jquery.ui.droppable.js" > < / script >
< link rel = "stylesheet" href = "../demos.css" >
< style >
2009-02-27 16:57:26 +00:00
#draggable, #draggable2 { width: 90px; height: 90px; padding: 0.5em; float: left; margin: 10px 10px 10px 0; }
2009-01-16 21:46:30 +00:00
#droppable, #droppable2 { width: 120px; height: 120px; padding: 0.5em; float: left; margin: 10px; }
< / style >
2010-09-10 13:38:42 +00:00
< script >
2009-01-16 21:46:30 +00:00
$(function() {
2010-09-10 13:38:42 +00:00
$( "#draggable" ).draggable();
$( "#droppable" ).droppable({
hoverClass: "ui-state-active",
drop: function( event, ui ) {
$( this )
.addClass( "ui-state-highlight" )
.find( "p" )
.html( "Dropped!" );
2009-01-16 21:46:30 +00:00
}
});
2010-09-10 13:38:42 +00:00
$( "#draggable2" ).draggable();
$( "#droppable2" ).droppable({
2009-01-18 03:21:47 +00:00
accept: "#draggable2",
2010-09-10 13:38:42 +00:00
activeClass: "ui-state-hover",
drop: function( event, ui ) {
$( this )
.addClass( "ui-state-highlight" )
.find( "p" )
.html( "Dropped!" );
2009-01-16 21:46:30 +00:00
}
});
});
< / script >
< / head >
< body >
2010-09-10 13:38:42 +00:00
2009-01-16 21:46:30 +00:00
< div class = "demo" >
2009-01-18 03:21:47 +00:00
< h3 class = "docs" > Feedback on hover:< / h3 >
2009-01-16 21:46:30 +00:00
< div id = "draggable" class = "ui-widget-content" >
< p > Drag me to my target< / p >
< / div >
< div id = "droppable" class = "ui-widget-header" >
< p > Drop here< / p >
< / div >
2009-01-18 03:21:47 +00:00
< h3 class = "docs" > Feedback on activating draggable:< / h3 >
2009-01-16 21:46:30 +00:00
< div id = "draggable2" class = "ui-widget-content" >
< p > Drag me to my target< / p >
< / div >
< div id = "droppable2" class = "ui-widget-header" >
< p > Drop here< / p >
< / div >
< / div > <!-- End demo -->
2010-09-10 13:38:42 +00:00
< div class = "demo-description" >
< p > Change the droppable's appearance on hover, or when the droppable is active (an acceptable draggable is dropped on it). Use the < code > hoverClass< / code > or < code > activeClass< / code > options to specify respective classes.< / p >
2009-01-16 21:46:30 +00:00
< / div > <!-- End demo - description -->
2010-09-10 13:38:42 +00:00
2009-01-16 21:46:30 +00:00
< / body >
< / html >