Spotify iFrame在Bootstrap模式中无法正确显示?

时间:2013-04-23 01:42:13

标签: php html css twitter-bootstrap spotify

我正在尝试将Spotify播放列表输入到Bootstrap模式中,但它不是“大”按钮,而是“紧凑”按钮。它在模态中显示这种方式: enter image description here

引导程序和iframe的代码是

 <!-- Modal -->
<div id="spotify_player" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
  <div class="modal-header">
    <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
    <h3 id="myModalLabel">Spotify Player</h3>
  </div>
  <div class="modal-body">
    <iframe src="https://embed.spotify.com/?uri=spotify:user:1210474735:playlist:1u4MR4ER329f64KjsRrcnA" width="445" height="525" frameborder="0" allowtransparency="true"></iframe>
  </div>
  <div class="modal-footer">
    <button class="btn" data-dismiss="modal" aria-hidden="true">Close</button>
    <button class="btn btn-primary">Save changes</button>
  </div>
</div>

src的{​​{1}}上显示为: enter image description here

它应该是怎样的。我需要做什么才能获得第一张具有播放列表/“长”按钮的图像,如第二张图像?感谢。

1 个答案:

答案 0 :(得分:0)

Bootstrap的hide类将显示样式设置为none,这也隐藏了iframe。无论iframe的宽高比如何,这都会使Play按钮变得紧凑。

可以理解的不是Spotify Play按钮的预期行为,而且我已经提交了一份错误报告,以便最接近代码的人可以查看它。