我希望视频开始播放,一旦它的绝对div消失,但即使使用javascript或自动播放也没有任何效果,没有控件启用它不想播放。有什么想法吗?
这是HTML
include\Bankaccount.h|13|error: expected ')' before 'n'|
include\Bankaccount.h|18|error: 'ifstream' does not name a type|
include\Bankaccount.h|14|note: bankAccount::bankAccount()|
include\Bankaccount.h|14|note: candidate expects 0 arguments, 1 provided|
include\Bankaccount.h|4|note: bankAccount::bankAccount(const bankAccount&)|
include\Bankaccount.h|4|note: no known conversion for argument 1 from 'std::string {aka std::basic_string}' to 'const bankAccount&'|
这是脚本:
<video id="video" width="100%" height="auto" style="position:relative;background-color:#2d2d2d;display:block;">
答案 0 :(得分:2)
在控制台中尝试此操作:$(#video")[0].play();
它可以在下面的示例中使用,因此您在调用play
时,要么使用了帖子的worng ID,要么尚未加载视频。
$('#loading').fadeOut(2000,function(){
$('#video')[0].play();
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.0.1/jquery.min.js"></script>
<!-- Hiding HTML5 Video Controls using CSS Pseudo selectors -->
<div id="loading" >loading</div>
<video width="300" id="video">
<source src="http://clips.vorwaerts-gmbh.de/VfE_html5.mp4" type="video/mp4">
</video>