2012-09-10 15:33:46 +00:00
<!doctype html>
2009-01-08 16:39:03 +00:00
< html lang = "en" >
< head >
2010-09-10 13:17:58 +00:00
< meta charset = "utf-8" >
2009-01-15 21:57:33 +00:00
< title > jQuery UI Draggable - Events< / 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 >
2010-09-10 13:17:58 +00:00
< link rel = "stylesheet" href = "../demos.css" >
< style >
#draggable { width: 16em; padding: 0 1em; }
#draggable ul li { margin: 1em 0; padding: 0.5em 0; } * html #draggable ul li { height: 1%; }
#draggable ul li span.ui-icon { float: left; }
#draggable ul li span.count { font-weight: bold; }
2009-01-08 16:39:03 +00:00
< / style >
2010-09-10 13:17:58 +00:00
< script >
$(function() {
var $start_counter = $( "#event-start" ),
$drag_counter = $( "#event-drag" ),
$stop_counter = $( "#event-stop" ),
counts = [ 0, 0, 0 ];
2009-01-08 16:39:03 +00:00
2010-09-10 13:17:58 +00:00
$( "#draggable" ).draggable({
start: function() {
counts[ 0 ]++;
updateCounterStatus( $start_counter, counts[ 0 ] );
},
drag: function() {
counts[ 1 ]++;
updateCounterStatus( $drag_counter, counts[ 1 ] );
},
stop: function() {
counts[ 2 ]++;
updateCounterStatus( $stop_counter, counts[ 2 ] );
}
2009-01-08 16:39:03 +00:00
});
2010-09-10 13:17:58 +00:00
function updateCounterStatus( $event_counter, new_count ) {
2009-01-08 16:39:03 +00:00
// first update the status visually...
2010-09-10 13:17:58 +00:00
if ( !$event_counter.hasClass( "ui-state-hover" ) ) {
$event_counter.addClass( "ui-state-hover" )
.siblings().removeClass( "ui-state-hover" );
2009-01-08 16:39:03 +00:00
}
// ...then update the numbers
2010-09-10 13:17:58 +00:00
$( "span.count", $event_counter ).text( new_count );
2009-01-08 16:39:03 +00:00
}
2010-09-10 13:17:58 +00:00
});
2009-01-08 16:39:03 +00:00
< / script >
< / head >
< body >
< div id = "draggable" class = "ui-widget ui-widget-content" >
< p > Drag me to trigger the chain of events.< / p >
< ul class = "ui-helper-reset" >
< li id = "event-start" class = "ui-state-default ui-corner-all" > < span class = "ui-icon ui-icon-play" > < / span > "start" invoked < span class = "count" > 0< / span > x< / li >
< li id = "event-drag" class = "ui-state-default ui-corner-all" > < span class = "ui-icon ui-icon-arrow-4" > < / span > "drag" invoked < span class = "count" > 0< / span > x< / li >
< li id = "event-stop" class = "ui-state-default ui-corner-all" > < span class = "ui-icon ui-icon-stop" > < / span > "stop" invoked < span class = "count" > 0< / span > x< / li >
< / ul >
< / div >
2010-09-10 13:17:58 +00:00
< div class = "demo-description" >
< p > Layer functionality onto the draggable using the < code > start< / code > , < code > drag< / code > , and < code > stop< / code > events. Start is fired at the start of the drag; drag during the drag; and stop when dragging stops.< / p >
2012-09-10 15:33:46 +00:00
< / div >
2009-01-08 16:39:03 +00:00
< / body >
< / html >