How to make jointjs paper responsive?

試著忘記壹切 提交于 2019-12-06 03:25:15

问题


I just discover javascript library JointJs and I implemented a graph with paper and rects.

But I can't make it responsive when I reduce the browser size my graph doesn't display correctly.

How can I make my paper responsive with jointjs ?


回答1:


You can initially set the paper to be the same dimensions as it's containing element, but that's only calculated initially when the paper is created. If you want to paper to change size as you resize your browser, you'll need to react to resize events.

Firstly, you'll need to set overflow to hidden on your container, otherwise its dimensions will stretch to fit its child, and it won't shrink if you shrink the browser.

#modelCanvas {
    overflow: hidden;
}

You'll have to make sure your #modelCanvaselement will stretch to fill available space by some method, either setting height: 100% (in situations where that will work) or using flexbox or absolute positioning.

Secondly, you'll need a resize event handler

$(window).resize(function() {
    var canvas = $('#modelCanvas');
    paper.setDimensions(canvas.width(), canvas.height());
});



回答2:


I Recommend using a responsive layout css such as bootstrap I personally recommend pure css (http://purecss.io) and the rest is easy once you set a base layout for the html page which contains the JointJS paper.

For example let's suppose you made the html base and you created specifically a div container called "modelCanvas" this div was made with a responsive css (For this example I used pure CSS).

<div id="modelCanvas" style="height:100%;width:100%; overflow-y: auto; overflow-x: auto;background-image:url(../res/tiny_grid.png);background-repeat:repeat;">

Now into the JS part of your web site you, we'll initialize required JointJS paper and graph init

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,
});

Now the JointJS paper is responsive Best, AG




回答3:


From the docs on setDimensions (http://resources.jointjs.com/docs/jointjs/v2.2/joint.html#dia.Paper.prototype.setDimensions), you can set width: '100%', height: '100%' and then control the responsive display with your css.

Then, something like:

$(window).on('resize', joint.util.debounce(function() {
    paper.scaleContentToFit({ padding: 10 });
}));

and/or also set a min-width/min-height in px to the paper in css and add an overflow: auto to the parent.




回答4:


You can just change the size of the div containing your paper:

document.getElementById("your-paper-container").setAttribute("style", "height: " + window.innerHeight + "px; overflow: scroll;");

You could change the code window.innterHeight to a variable if you have some additional elements within your page:

headers = 210;
height = window.innerHeight - headers;
document.getElementById("paper-container").setAttribute("style", "height: " + height + "px; overflow: scroll;");


来源:https://stackoverflow.com/questions/29029390/how-to-make-jointjs-paper-responsive

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!