web-dev-qa-db-fra.com

YouTube ne s'affiche pas en plein écran

Pour une raison quelconque, les vidéos YouTube de mon site Web n'obtiennent pas le bouton plein écran, même si j'ai ajouté le paramètre allowFullScreen défini sur true à la fois dans les balises object et embed.

Voici un exemple de page: http://www.indievault.it/2011/11/09/indie-vault-alla-games-week-2011-online-la-video-gallery/

Jetez un coup d’œil à la source. Le paramètre allowFullScreen est présent, mais le bouton ne s'affiche pas. Voici un extrait du code de cette page:

<object width="540" height="325"><param name="movie" value="http://www.youtube.com/v/dvYQhJwwkgA"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/dvYQhJwwkgA" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="540" height="325"></embed </object>
1
pt2ph8

Ça marche pour moi

<object width="540" height="325"><param name="movie" value="http://www.youtube.com/v/dvYQhJwwkgA?version=3&amp;hl=en_US&amp;rel=0"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/dvYQhJwwkgA?version=3&amp;hl=en_US&amp;rel=0" type="application/x-shockwave-flash" width="540" height="325" allowscriptaccess="always" allowfullscreen="true"></embed></object>​
2
Anagio

Essayez de changer votre code avec celui-ci:

<iframe title="YouTube video player" 
              width="540" height="325" 
              src="http://www.youtube.com/v/dvYQhJwwkgA?rel=0"
              frameborder="0" allowfullscreen>
</iframe>
0
Aurelio De Rosa