Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>Document</title>
- <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
- <link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
- <script>
- document.addEventListener("DOMContentLoaded", () => {
- let canvas = document.getElementById("canvasId");
- let context = canvas.getContext("2d");
- let mouse;
- });
- </script>
- <style type="text/css">
- #canvasId{
- background: black;
- }
- </style>
- </head>
- <body class="p-2">
- <div class="container-fluid">
- <div class="row">
- <div class="col-auto">
- <canvas id="canvasId" class="d-block" width="800" height="600"></canvas>
- </div>
- <div class="col-3">
- <div class="form-check">
- <div class="d-inline-block mx-4">
- <input type="radio" id="shape1" name="shape" class="form-check-input" value="Rect" >
- <label class="form-check-label" for="shape1">Четириъгълник</label>
- </div>
- <div class="d-inline-block mx-4">
- <input type="radio" id="shape2" name="shape" class="form-check-input" value="Circle">
- <label class="form-check-label" for="shape2">Окръжност</label>
- </div>
- </div>
- <div class="form-group mb-3">
- <label> Координат по X </label>
- <input class="form-control" id="posX" value="100"></input>
- </div>
- <div class="form-group mb-3">
- <label> Координат по Y </label>
- <input class="form-control" id="posY" value="100"></input>
- </div>
- <div class="form-group mb-3">
- <label> Широчина </label>
- <input class="form-control" id="sizeX" value="200"></input>
- </div>
- <div class="form-group mb-3">
- <label> Височина </label>
- <input class="form-control" id="sizeY" value="20"></input>
- </div>
- <div class="form-group d-grid">
- <input type="button" class="btn btn-info text-white" id="drawShape" value="Създай">
- </div>
- </div>
- </div>
- </div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement