2021-04-29 18:50:12 +02:00
|
|
|
<html>
|
|
|
|
<head>
|
2022-09-05 00:48:36 +05:30
|
|
|
<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" />
|
2021-04-29 18:50:12 +02:00
|
|
|
<link
|
2022-09-05 00:48:36 +05:30
|
|
|
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"
|
2021-04-29 18:50:12 +02:00
|
|
|
rel="stylesheet"
|
|
|
|
/>
|
|
|
|
<style>
|
|
|
|
body {
|
|
|
|
/* background: rgb(221, 208, 208); */
|
|
|
|
/* background:#333; */
|
|
|
|
font-family: 'Arial';
|
|
|
|
/* font-size: 18px !important; */
|
2022-09-05 00:48:36 +05:30
|
|
|
}
|
|
|
|
h1 {
|
|
|
|
color: grey;
|
|
|
|
}
|
2021-04-29 18:50:12 +02:00
|
|
|
.mermaid2 {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.mermaid svg {
|
|
|
|
/* font-size: 18px !important; */
|
|
|
|
}
|
2021-06-03 20:47:24 +02:00
|
|
|
.malware {
|
|
|
|
position: fixed;
|
2022-09-05 00:48:36 +05:30
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
2021-06-03 20:47:24 +02:00
|
|
|
height: 150px;
|
|
|
|
background: red;
|
|
|
|
color: black;
|
|
|
|
display: flex;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
font-family: monospace;
|
|
|
|
font-size: 72px;
|
|
|
|
}
|
2021-04-29 18:50:12 +02:00
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
2021-06-03 20:47:24 +02:00
|
|
|
<div>Security check</div>
|
2021-04-29 18:50:12 +02:00
|
|
|
<div class="flex">
|
2022-09-05 00:48:36 +05:30
|
|
|
<pre id="diagram" class="mermaid">
|
2022-09-16 14:05:15 +02:00
|
|
|
flowchart TD
|
|
|
|
A[myClass1] --> B[default] & C[default]
|
|
|
|
B[default] & C[default] --> D[myClass2]
|
|
|
|
classDef default stroke-width:2px,fill:none,stroke:silver
|
|
|
|
classDef node color:red
|
|
|
|
classDef myClass1 color:#0000ff
|
|
|
|
classDef myClass2 stroke:#0000ff,fill:#ccccff
|
|
|
|
class A myClass1
|
|
|
|
class D myClass2
|
|
|
|
</pre
|
|
|
|
>
|
2021-06-03 20:47:24 +02:00
|
|
|
<div id="res" class=""></div>
|
2022-09-05 00:48:36 +05:30
|
|
|
</div>
|
|
|
|
<script src="./mermaid.js"></script>
|
2021-04-29 18:50:12 +02:00
|
|
|
<script>
|
|
|
|
mermaid.parseError = function (err, hash) {
|
2021-12-04 15:28:40 -08:00
|
|
|
// console.error('Mermaid error: ', err);
|
|
|
|
};
|
2021-04-29 18:50:12 +02:00
|
|
|
mermaid.initialize({
|
2021-12-04 15:28:40 -08:00
|
|
|
startOnLoad: false,
|
2022-09-16 14:05:15 +02:00
|
|
|
logLevel: 0,
|
2021-04-29 18:50:12 +02:00
|
|
|
// themeVariables: {relationLabelColor: 'red'}
|
|
|
|
});
|
2021-12-04 15:28:40 -08:00
|
|
|
function callback() {
|
2022-09-05 00:48:36 +05:30
|
|
|
alert('It worked');
|
|
|
|
}
|
2021-06-03 20:47:24 +02:00
|
|
|
|
2022-09-05 00:48:36 +05:30
|
|
|
// document.querySelector('#diagram').innerHTML = diagram;
|
|
|
|
try {
|
|
|
|
mermaid.initThrowsErrors(undefined, '#diagram');
|
|
|
|
} catch (err) {
|
|
|
|
console.log('Caught error:', err);
|
|
|
|
}
|
2021-04-29 18:50:12 +02:00
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|