Last active
February 6, 2019 17:27
-
-
Save tiagocordeiro/0e9841f81fd5dc7327960aeb1e3d0fbf to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Adicionar Styles a página --> | |
<style> | |
.video-container { | |
position: relative; | |
padding-bottom: 56.25%; | |
padding-top: 30px; height: 0; overflow: hidden; | |
} | |
.video-container iframe, | |
.video-container object, | |
.video-container embed { | |
position: absolute; | |
top: 0; | |
left: 0; | |
width: 100%; | |
height: 100%; | |
} | |
/* Telefones em landscape e abaixo */ | |
@media (max-width: 767px) { | |
.video-container iframe, | |
.video-container object, | |
.video-container embed { | |
max-width: 100%; | |
height: 100%; | |
} | |
} | |
</style> | |
<!-- trocar isso --> | |
<div class="embed-responsive embed-responsive-16by9"> | |
<iframe class="embed-responsive-item" src="https://www.youtube.com/embed/hlXRs2zPcN8?&showinfo=0&iv_load_policy=3&rel=0" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen=""></iframe> | |
</div> | |
<!-- por isso --> | |
<div class="video-container"> | |
<iframe width="1140" height="480" src="https://www.youtube.com/embed/hlXRs2zPcN8?&showinfo=0&iv_load_policy=3&rel=0" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen="" style="max-width: 100%;"></iframe> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment