0
即時通訊使用聯合js庫來創建一個html內部的圖,但我需要它作爲mi站點作出響應.Thing是,我把它放在一個java類的div裏面,打開並關閉驗證碼:響應聯合js圖
$('.open-down-up').click(function(){
var nameMore = $(this).attr("name");
var valMore = $(this).attr("value");
if(valMore == 0){
$(this).find('span').empty();
$(this).find('span').append("▼");
$('div[id='+nameMore+']').slideDown("normal");
$(this).attr("value","1");
}else if(valMore == 1){
$(this).find('span').empty();
$(this).find('span').append("►");
var n = nameMore.indexOf("process_process");
$('div[id='+nameMore+']').slideUp("normal", function(){
var n = nameMore.indexOf("process_process");
if(n > -1){
hide_panel_all();
}
});
$(this).attr("value","0");
}
});
所以,我已經嘗試過的東西,如:
var graph = new joint.dia.Graph;
var paper = new joint.dia.Paper({
el: $('#modelCanvas'),
gridSize: 10,
height: $('#modelCanvas').height(),
width: $('#modelCanvas').width(),
gridSize: 1,
model: graph,
});
但它不工作...任何想法或做法我可以申請?
在此先感謝。
您是否嘗試過解決方案http://stackoverflow.com/questions/29029390/how-to-make-jointjs-paper-responsive? –
@WilfEngel是的,但沒有任何工作 – jsanchezs