mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-01-14 06:43:25 +08:00
142 lines
3.9 KiB
HTML
142 lines
3.9 KiB
HTML
<html>
|
|
<head>
|
|
<link
|
|
href="https://fonts.googleapis.com/css?family=Montserrat&display=swap"
|
|
rel="stylesheet"
|
|
/>
|
|
<link href="https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css" rel="stylesheet">
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
|
|
<link href="https://fonts.googleapis.com/css?family=Noto+Sans+SC&display=swap" rel="stylesheet">
|
|
<style>
|
|
body {
|
|
/* background: rgb(221, 208, 208); */
|
|
/* background:#333; */
|
|
font-family: 'Arial';
|
|
}
|
|
h1 { color: grey;}
|
|
.mermaid2 {
|
|
display: none;
|
|
}
|
|
.someClass > * {
|
|
/* fill: red !important; */
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>info below</h1>
|
|
<div class="flex flex-wrap">
|
|
<div class="mermaid" style="width: 50%; height: 20%;">
|
|
%%{init: { 'logLevel': 0, 'theme': 'default'} }%%
|
|
graph TD
|
|
A[Default] -->|Get money| B(Go shopping)
|
|
B --> C{Let me think}
|
|
B --> G[/Another/]
|
|
C ==>|One| D[Laptop]
|
|
C -->|Two| E[iPhone]
|
|
C -->|Three| F[fa:fa-car Car]
|
|
subgraph section
|
|
C
|
|
D
|
|
E
|
|
F
|
|
G
|
|
end
|
|
</div>
|
|
<div class="mermaid" style="width: 50%; height: 20%;">
|
|
%%{init: { 'logLevel': 1, 'theme': 'forest'} }%%
|
|
graph TD
|
|
A[Forest] -->|Get money| B(Go shopping)
|
|
B --> C{Let me think}
|
|
B --> G[/Another/]
|
|
C ==>|One| D[Laptop]
|
|
C -->|Two| E[iPhone]
|
|
C -->|Three| F[fa:fa-car Car]
|
|
subgraph section
|
|
C
|
|
D
|
|
E
|
|
F
|
|
G
|
|
end
|
|
</div>
|
|
<div class="mermaid" style="width: 50%; height: 20%;">
|
|
%%{init: { 'logLevel': 1, 'theme': 'neutral'} }%%
|
|
|
|
graph TD
|
|
A[Neutral] -->|Get money| B(Go shopping)
|
|
B --> C{Let me think}
|
|
B --> G[/Another/]
|
|
C ==>|One| D[Laptop]
|
|
C -->|Two| E[iPhone]
|
|
C -->|Three| F[fa:fa-car Car]
|
|
subgraph section
|
|
C
|
|
D
|
|
E
|
|
F
|
|
G
|
|
end
|
|
</div>
|
|
<div class="mermaid" style="background: #3f3f3f; width: 50%; height: 20%;">
|
|
%%{init: { 'logLevel': 1, 'theme': 'dark'} }%%
|
|
|
|
graph TD
|
|
A[Dark] -->|Get money| B(Go shopping)
|
|
B --> C{Let me think}
|
|
B --> G[/Another/]
|
|
C ==>|One| D[Laptop]
|
|
C -->|Two| E[iPhone]
|
|
C -->|Three| F[fa:fa-car Car]
|
|
subgraph section
|
|
C
|
|
D
|
|
E
|
|
F
|
|
G
|
|
end
|
|
</div>
|
|
<div class="mermaid" style="background: #3f3f3f; width: 50%; height: 20%;">
|
|
%%{init: { 'logLevel': 1} }%%
|
|
|
|
graph TD
|
|
A[None set] -->|Get money| B(Go shopping)
|
|
B --> C{Let me think}
|
|
B --> G[/Another/]
|
|
C ==>|One| D[Laptop]
|
|
C -->|Two| E[iPhone]
|
|
C -->|Three| F[fa:fa-car Car]
|
|
subgraph section
|
|
C
|
|
D
|
|
E
|
|
F
|
|
G
|
|
end
|
|
</div>
|
|
</div>
|
|
|
|
<script src="./mermaid.js"></script>
|
|
<script>
|
|
mermaid.parseError = function (err, hash) {
|
|
// console.error('Mermaid error: ', err);
|
|
};
|
|
mermaid.initialize({
|
|
// theme: 'dark',
|
|
// theme: 'dark',
|
|
// arrowMarkerAbsolute: true,
|
|
// themeCSS: '.edgePath .path {stroke: red;} .arrowheadPath {fill: red;}',
|
|
logLevel: 0,
|
|
flowchart: { useMaxWidth: true },
|
|
graph: { curve: 'cardinal', "htmlLabels": false },
|
|
// gantt: { axisFormat: '%m/%d/%Y' },
|
|
sequence: { actorMargin: 50, showSequenceNumbers: true },
|
|
// sequenceDiagram: { actorMargin: 300 } // deprecated
|
|
fontFamily: '"arial", sans-serif',
|
|
curve: 'cardinal',
|
|
securityLevel: 'strict',
|
|
});
|
|
function callback(){alert('It worked');}
|
|
</script>
|
|
</body>
|
|
</html>
|