jquery - Drag and Drop Navigation -
i'm looking create drag , drop navigation site. thought take heading (ie, us, home, contact etc) , drag , drop space, leads different page (kind of http://www.carbonstudio.co.uk/) love jquery have no thought how start this.
to utilize drag , drop can utilize jquery ui draggable
than code need utilize drag , drop is:
$( "#draggable" ).draggable(); to utilize jquery ui droppable see link
than illustration be:
$( "#draggable" ).draggable(); $( "#droppable" ).droppable({ drop: function( event, ui ) { $( ) .addclass( "ui-state-highlight" ) .find( "p" ) .html( "dropped!" ); } }); jquery
No comments:
Post a Comment