28 lines
794 B
PHP
28 lines
794 B
PHP
<style>
|
|
.flowchart .page {
|
|
zoom: 50%;
|
|
transition:all .5s
|
|
}
|
|
</style>
|
|
<script>
|
|
$(function(){
|
|
var zoom = 50;
|
|
$(".zoomin").on("click", function(){
|
|
zoom = zoom + 10;
|
|
$(".flowchart .page").css("zoom", zoom + "%");
|
|
|
|
});
|
|
$(".zoomout").on("click", function(){
|
|
zoom = zoom - 10;
|
|
$(".flowchart .page").css("zoom", zoom + "%");
|
|
|
|
});
|
|
});
|
|
</script>
|
|
<button class="btn btn-outline-primary zoomin"><i class="fa fa-plus"></i></button>
|
|
<button class="btn btn-outline-primary zoomout"><i class="fa fa-minus"></i></button>
|
|
<div class="flowchart" style="overflow:auto;width:100%;height:80vh;margin-top:10px">
|
|
|
|
@include("admin.dashboard.flowchart")
|
|
</div>
|