Vue Bootstrap IFrame

Vue IFrame - Bootstrap 4 & Material Design

Vue Bootstrap IFrame is an HTML document which is embedded in another HTML doc on a web page. IFrames are used to insert content from another source.

With the Bootstrap integration, you can put the content of the IFrame inside modal to make it even more interactive and entertaining.

IFrames in Bootstrap are fully responsive components, adjusting accordingly to the screen size so there's no need to worry about the quality of your content.

Use examples:

  • Video tutorial
  • Promotional video presentation
  • Google Maps in contact section

See the following examples to get a good grip at IFrames.


YouTube IFrame


          <div class="embed-responsive embed-responsive-16by9 z-depth-1-half">
              <iframe class="embed-responsive-item" src="https://www.youtube.com/embed/v64KOxKVLVg" allowfullscreen></iframe>
            </div>
      

Vimeo IFrame


              <div class="embed-responsive embed-responsive-16by9">
                  <iframe class="embed-responsive-item" src="https://player.vimeo.com/video/137857207" allowfullscreen></iframe>
                </div>
          

Google Maps


              <mdb-google-map
                name="example"
                class="col-md-12"
                style="height: 500px; position: relative; overflow: hidden"
                :markerCoordinates="coordinates"
                :zoom="14">
              </mdb-google-map>
          


              import { mdbGoogleMap } from 'mdbvue';
              export default {
                name:'GoogleMapsPage',
                components: {
                  mdbGoogleMap
                },
                data() {
                  return {
                    coordinates: [{
                      latitude: 40.725118,
                      longitude: -73.997699,
                      title: 'New York'
                    }]
                  }
                }
              };



          


IFrame with shadows

.z-depth-1

.z-depth-1-half

.z-depth-2

.z-depth-3

.z-depth-4

.z-depth-5

.hoverable


                      <div class="embed-responsive embed-responsive-16by9 z-depth-1">
                          <iframe class="embed-responsive-item" src="https://www.youtube.com/embed/fa3Iczgh8Ok" style="height: 101%" allowfullscreen></iframe>
                      </div>
          


Warning: file_get_contents(common/gs.html): failed to open stream: No such file or directory in /var/www/html/legacy/vue/5.8.3/index.php on line 143