docsify-mermaid-zoom
v3.0.0
Published
A simple Docsify plugin enabling zoom in mermaid diagrams.
Downloads
1,917
Readme
Docsify-mermaid-zoom
A simple Docsify plugin enabling zoom in mermaid diagrams.
👉 You can test the plugin here
How to use
Dependencies
Add the dependencies and plugin to index.html
<script>
window.$docsify = {
...,
mermaidConfig: {
querySelector: ".mermaid",
}
...,
};
</script>
<!-- Import D3.js -->
<script src="//cdn.jsdelivr.net/npm/d3@7"></script>
<!-- Import Mermaid (⚠️ Maximum V9 for now)-->
<script src="//cdn.jsdelivr.net/npm/mermaid@9/dist/mermaid.js"></script>
<script src="//unpkg.com/docsify-mermaid@latest/dist/docsify-mermaid.js"></script>
<script>
mermaid.initialize({ startOnLoad: true });
</script>
<!-- Import Docsify-mermaid-zoom -->
<script src="//unpkg.com/docsify-mermaid-zoom/dist/docsify-mermaid-zoom.js"></script>
You can configure min/max scale and disable the zoom pannel.
The pannel provide two button. The first button activates the zoom feature on the mermaid diagram. The second one allows to reset the zoom. This pannel can be disable.
You can also activate the zoom on the diagram by double clicking on it. The diagram will return to its original scale once it leaves the viewport on your screen.
Optional configuration
You can configure minimum zoom and maximum zoom.
You can also disable the zoom pannel. Zoom will still work if you double click on a diagramm.
<script>
window.$docsify = {
...,
mermaidZoom: {
minimumScale: 1,
maximumScale: 5,
zoomPannel: true
},
...,
}
</script>
License
The code in this repository is licensed under the MIT License. See the LICENSE file for more information.
Contributing
If you found a bug in my code or want to improve this plugin, please feel free to open a pull request or an issue. I am always looking for ways to improve my solutions and I appreciate any feedback or contributions.