Renuka CE
Renuka CE

Reputation: 686

Iframe full screen not working in Chrome?

I am integrating Slideshare in my website. Slide presentation is coming fine in small window. But the problem is slide presentation in full screen is not coming in Chrome(website slider itself displaying in full screen). In Mozilla its working fine. Only issue with Chrome. Website link: http://test.kiadb.in/

place used the iframe is next to invest Karnataka image refer image enter image description here


This code I have used for Iframe <iframe src="http://www.slideshare.net/slideshow/embed_code/56692337" frameborder="2" allowfullscreen="allowfullscreen"></iframe>

Thanks in Advance.

Upvotes: 8

Views: 27316

Answers (5)

Vitali Karmanov
Vitali Karmanov

Reputation: 231

Make sure that your Iframe is not inserted in another iframe embed code. If that is the case, the parent iFrame must have the allowfullscreen="true" parameter as well.

Upvotes: 1

Alok
Alok

Reputation: 11

Try this

allow="autoplay; encrypted-media" allowfullscreen="allowfullscreen" mozallowfullscreen="mozallowfullscreen" msallowfullscreen="msallowfullscreen" oallowfullscreen="oallowfullscreen" webkitallowfullscreen="webkitallowfullscreen" frameborder="0"

Upvotes: -1

user5771858
user5771858

Reputation:

Please try this iframe.

<iframe src="http://www.slideshare.net/slideshow/embed_code/56692337" frameborder="2" allowfullscreen></iframe>

I think it will work for you.

Upvotes: 2

Chetan Naik
Chetan Naik

Reputation: 151

I got a error in console
just try to solve that

Error pic

and try this iframe

<iframe src="http://www.slideshare.net/slideshow/embed_code/56692337" frameborder="2" allowfullscreen="allowfullscreen" webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen></iframe>

Upvotes: 0

Lalji Tadhani
Lalji Tadhani

Reputation: 14159

try this way

<iframe src="http://yourpage.com" frameborder="0" allowFullScreen="true" webkitallowfullscreen="true" mozallowfullscreen="true"></iframe>

Upvotes: 17

Related Questions