|
|
| Строка 183: |
Строка 183: |
|
| |
|
| <div class="fullHTMLFrameSource"> | | <div class="fullHTMLFrameSource"> |
| <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous"> | | <div class="mb-3"> |
| <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script> | | <label for="formFile" class="form-label">Default file input example</label> |
| | <input class="form-control" type="file" id="formFile"> |
| | </div> |
| | <div class="mb-3"> |
| | <label for="formFileMultiple" class="form-label">Multiple files input example</label> |
| | <input class="form-control" type="file" id="formFileMultiple" multiple> |
| | </div> |
| | <div class="mb-3"> |
| | <label for="formFileDisabled" class="form-label">Disabled file input example</label> |
| | <input class="form-control" type="file" id="formFileDisabled" disabled> |
| | </div> |
| | <div class="mb-3"> |
| | <label for="formFileSm" class="form-label">Small file input example</label> |
| | <input class="form-control form-control-sm" id="formFileSm" type="file"> |
| | </div> |
| | <div> |
| | <label for="formFileLg" class="form-label">Large file input example</label> |
| | <input class="form-control form-control-lg" id="formFileLg" type="file"> |
| | </div> |
|
| |
|
| <!DOCTYPE html>
| |
| <html lang="ru">
| |
| <head>
| |
| <meta charset="UTF-8">
| |
| <meta name="viewport" content="width=device-width, initial-scale=1.0">
| |
| <title>Bootstrap Conditional Loading</title>
| |
| </head>
| |
| <body>
| |
|
| |
| <div id="carouselExampleCaptions" class="carousel slide">
| |
| <div class="carousel-indicators">
| |
| <button type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide-to="0" class="active" aria-current="true" aria-label="Slide 1"></button>
| |
| <button type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide-to="1" aria-label="Slide 2"></button>
| |
| <button type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide-to="2" aria-label="Slide 3"></button>
| |
| </div>
| |
| <div class="carousel-inner">
| |
| <div class="carousel-item active">
| |
| <img src="..." class="d-block w-100" alt="...">
| |
| <div class="carousel-caption d-none d-md-block">
| |
| <h5>First slide label</h5>
| |
| <p>Some representative placeholder content for the first slide.</p>
| |
| </div>
| |
| </div>
| |
| <div class="carousel-item">
| |
| <img src="..." class="d-block w-100" alt="...">
| |
| <div class="carousel-caption d-none d-md-block">
| |
| <h5>Second slide label</h5>
| |
| <p>Some representative placeholder content for the second slide.</p>
| |
| </div>
| |
| </div>
| |
| <div class="carousel-item">
| |
| <img src="..." class="d-block w-100" alt="...">
| |
| <div class="carousel-caption d-none d-md-block">
| |
| <h5>Third slide label</h5>
| |
| <p>Some representative placeholder content for the third slide.</p>
| |
| </div>
| |
| </div>
| |
| </div>
| |
| <button class="carousel-control-prev" type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide="prev">
| |
| <span class="carousel-control-prev-icon" aria-hidden="true"></span>
| |
| <span class="visually-hidden">Previous</span>
| |
| </button>
| |
| <button class="carousel-control-next" type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide="next">
| |
| <span class="carousel-control-next-icon" aria-hidden="true"></span>
| |
| <span class="visually-hidden">Next</span>
| |
| </button>
| |
| </div>
| |
| </body>
| |
| </html>
| |
|
| |
|
| </div> | | </div> |