"<iframe> in Custom Modal"
Bootstrap 3.1.0 Snippet by mrmccormack

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<link href="//netdna.bootstrapcdn.com/bootstrap/3.1.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.1.0/js/bootstrap.min.js"></script>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<!-- Submitted to Feature March 2, 2014 10:20pm -->
<div class="container">
<div class="row">
<h2>TEST: iFrame in Custom Modal</h2>
<p>Modal contains iframes and has custom height. opacity and background-color.</p>
<p><a href="http://bootsnipp.com/iframe/8Z7b" target="_blank">View Full Screen</a></p>
<!-- Button trigger modal -->
<button class="btn btn-primary btn-lg" data-toggle="modal" data-target="#myModal">
Launch modal with iframe
</button>
<!-- Modal -->
<div class="modal fade" 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">×</button>
<h4 class="modal-title" id="myModalLabel">Code Guide by @mdo</h4>
<p>Standards for developing flexible, durable, and sustainable HTML and CSS.</p>
</div>
<div class="modal-body">
<iframe src="http://mdo.github.io/code-guide/" id="info" class="iframe" name="info" seamless="" height="100%" width="100%"></iframe>
</div>
</div>
</div>
</div> <!-- /#myModal -->
<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
body{
background-color:#333;
color:#ccc;
}
.container{
margin-top:60px;
padding: 60px;
border:10px;
border-radius:26px;
background: url('http://25.media.tumblr.com/ad80d557aee5736d7b01ca13846781f5/tumblr_n10n5ygMJI1st5lhmo1_1280.jpg');
}
/* change standard modal behavior */
.modal-body {
height: 600px;
overflow: auto;
}
.modal-backdrop {
background-color: #424530;
}
.modal-backdrop.fade.in
{
opacity: .8;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments:

Hey, when I use url "https://commondatastorage.googleapis.com/stockviews-development/sample.pdf" in iframe, pdf is show with width 0. Any help will be appreciated. Thanks in advance.

saumya1712 (-1) - 6 years ago - Reply -1