17 lines
721 B
PHP
Executable File
17 lines
721 B
PHP
Executable File
<?php
|
|
/**
|
|
* @file index.php
|
|
* @brief Контейнер для блока схемы
|
|
*/
|
|
?>
|
|
|
|
<?php /** @brief Основной контейнер диаграммы */ $dgrmDiv; ?>
|
|
<div id="dgrmDiv" class="bfloat">
|
|
<div class="btitle" style="background-color: transparent;">Блок схема</div>
|
|
<ap-menu id="menu"></ap-menu>
|
|
<ap-menu-shape id="menu-shape"></ap-menu-shape>
|
|
<div id="tip"></div>
|
|
<svg id="diagram" tabindex="0" style="background-position: 0px 0px; touch-action: none; background-color: #fff; display:block; user-select: none; -webkit-user-select: none; -webkit-touch-callout: none; pointer-events: none;">
|
|
<g id="canvas" style="transform: matrix(1, 0, 0, 1, 0, 0);"></g>
|
|
</svg>
|
|
</div>
|