form_func4.php 794 Bytes
<html>
	<style>
		.func4-button{
			height: 30px;
			width: 80px;
			background: #fff;
			border-radius: 10px;
			position: absolute;
		.func4-button:hover{
			background: #b8ff70;
		}
		.func4-button:active{
			background: #07e50a;
		}
	</style>
	<form method="post" action="main.php?tab=Menus">
		<input type="button" id="func4" name="func4" class="func4-button" value="" onclick="this.form.submit()"/>
		<input type="hidden" id="func4" name="func4" value="FUNC4" class="btn-outline-danger"/>
	</form>
	<script type='text/javascript'>
		var elem = document.getElementById('cam<?php echo $i ?>');
		var pos = elem.getBoundingClientRect();
		var btn = document.getElementById('func4');
		var pos_x = pos.x+240;
		btn.style = "top : "+(pos.bottom)+"px; left : "+(pos_x)+"px";
	</script>
</html>