2012-07-14 73 views

回答

1

試試這個插件,他們甚至有JsPlump

爲例

插件:http://www.magnoliyan.com/mini-map/

例子:http://www.magnoliyan.com/mini-map/demos/window.html

//init jsPlumb toolkit 
jsPlumb.bind("ready", function() { 
    jsPlumb.setRenderMode(jsPlumb.SVG); 
    jsPlumbDemo.init(); 
    // make all the element divs draggable 
    jsPlumb.draggable(jsPlumb.getSelector(".element"), { 
     stop: function(event, ui) { 
      //update MiniMap after an element is moved 
      $(window).mgMiniMap('update'); 
     } 
    }); 
}); 
$(window).load(function(){ 
    //init MiniMap 
    $(window).mgMiniMap({elements: '.element',draggable: true}); 
}); 
相關問題