Bootstrap modal carousel

Purpose

Maximize a modal box on the screen.


Demo

The default one from Twitter Bootstrap

A simple fullscreen modal


Usage

Based on the default Twitter Bootstrap code of the modal component, add the class name .modal-fullscreen to the modal element to display it in fullscreen and that's it.

<link href="modal-fullscreen.css" rel="stylesheet" />

<button type="button" class="btn" data-toggle="modal" data-target="#myModal">Demo</button>

<div class="modal fade modal-fullscreen force-fullscreen" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
  <div class="modal-dialog">
    <div class="modal-content">
      <div class="modal-header">
        <button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
        <h4 class="modal-title">Modal title</h4>
      </div>
      <div class="modal-body">
        <p>One fine body…</p>
      </div>
      <div class="modal-footer">
        <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
        <button type="button" class="btn btn-primary">Save changes</button>
      </div>
    </div><!-- /.modal-content -->
  </div><!-- /.modal-dialog -->
</div><!-- /.modal -->