当点击嵌入式Youtube播放器内的全屏视图时,整个页面进入全屏模式,就像按下F11(键)时发生的情况一样,这个问题只发生在chrome中,只有当我添加了animate.css类时animated
和fadeInDown
之类的效果类请检查以下代码:
<div class="col-sm-8 col-sm-offset-2 delay-2 animated fadeInDown">
<iframe width="420" height="315" src="//www.youtube-nocookie.com/embed/EqDxIJ42zHg?showinfo=0" frameborder="0" allowfullscreen></iframe>
</div>
.delay-2 { // If in case...
-webkit-animation-delay: 600ms;
animation-delay: 600ms;
}
我在网上搜索过但没找到任何解决方案,我认为这与CSS动画属性有关。我该如何纠正这个问题?有没有人遇到过这样的问题?
感谢。