如何禁用Google幻灯片演示文稿IFrame导航

时间:2015-04-16 18:07:41

标签: html css google-chrome iframe

我正在网站上工作并使用演示文稿作为音乐会图像的幻灯片,因为对于没有精通编辑幻灯片期间所显示内容的程序员来说,这很容易和熟悉。要隐藏我使用CSS的导航,并将IFrame放在带有.googleSlideshow类的div中。

HTML:

<div class="googleSlideshow">
<iframe src="https://docs.google.com/presentation/d/bL4rGh0Nk/embed?start=true&loop=true&delayms=5000" frameborder="0" width="450" height="550" allowfullscreen="false" mozallowfullscreen="false" webkitallowfullscreen="false"></iframe>
</div>

CSS:

.googleSlideshow{
 width:100%;
 height:550px;
 overflow:hidden;
}
.googleSlideshow iframe{
 width:450px! important;
 height:calc(100% + 29px);
}

够简单!问题出现了:当点击IFrame时,演示文稿会转到下一张幻灯片并暂停!这很糟糕,因为这是在IFrame中,IFrame的组件不能通过我的CSS或脚本来实现。是否有可以添加到IFrame的属性,该属性将传递到演示文稿并停止图像点击导航?

1 个答案:

答案 0 :(得分:8)

添加rm = minimal

<iframe src="https://docs.google.com/presentation/d/bL4rGh0Nk/embed?start=true&loop=true&delayms=5000&rm=minimal" frameborder="0" width="450" height="550" allowfullscreen="false" mozallowfullscreen="false" webkitallowfullscreen="false"></iframe>
相关问题