2012-09-10 15:33:46 +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 >
2013-12-02 18:36:12 +00:00
< link rel = "stylesheet" href = "../../themes/base/all.css" >
2014-06-10 11:55:45 +00:00
< script src = "../../external/jquery/jquery.js" > < / script >
2013-12-02 18:36:12 +00:00
< script src = "../../ui/core.js" > < / script >
< script src = "../../ui/widget.js" > < / script >
< script src = "../../ui/mouse.js" > < / script >
< script src = "../../ui/draggable.js" > < / script >
< script src = "../../ui/droppable.js" > < / script >
2010-09-10 13:38:42 +00:00
< 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; }
2012-09-10 15:33:46 +00:00
h3 { clear: left; }
2009-01-16 21:46:30 +00:00
< / 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({
2015-01-01 17:11:06 +00:00
classes: {
"ui-droppable-hover": "ui-state-hover"
},
2010-09-10 13:38:42 +00:00
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",
2015-01-01 17:11:06 +00:00
classes: {
"ui-droppable-active": "ui-state-default"
},
2010-09-10 13:38:42 +00:00
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
2012-09-10 15:33:46 +00:00
< h3 > 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 >
2012-09-10 15:33:46 +00:00
< h3 > 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 >
2010-09-10 13:38:42 +00:00
< div class = "demo-description" >
2015-01-01 17:11:06 +00:00
< p > Change the droppable's appearance on hover, or when the droppable is active (an acceptable draggable is dropped on it). Set the values of the < code > ui-droppable-hover< / code > or < code > ui-droppable-active< / code > properties on the < code > classes< / code > option to specify the respective classes.< / p >
2012-09-10 15:33:46 +00:00
< / div >
2009-01-16 21:46:30 +00:00
< / body >
< / html >