Я не могу заставить мой плеер автоматически запускаться или элементы управления автоматически скрываются. Я считаю, что настроил это правильно, но это просто не работает. Вот мой полный скрипт-тег для этого:
<script type="text/javascript">
// wait for the DOM to load using jQuery
$(function() {
// setup player normally
$f("videoPlayer", "videos/flowplayer-3.2.7.swf", {
// clip properties common to all playlist entries
clip: {
autoPlay: false,
autoBuffering: true,
baseUrl: 'http://thepartysource.com/videos/',
subTitle: '',
time: ''
},
// our playlist
playlist: [
{
url: 'DRINK DIFFERENTLY - 480x272.m4v',
autoPlay: true
},
{
url: 'DRINK DIFFERENTLY - 480x272.m4v'
}
],
// show playlist buttons in controlbar
plugins: {
controls: {
playlist: true,
// display properties such as size, location and opacity
top: 20,
left: 0,
bottom: 0,
opacity: 0.95,
// styling properties (will be applied to all plugins)
background: '#000', // url(/my/custom/controls.png) no-repeat 3px 6px',
backgroundGradient: 'low',
// controlbar specific settings
timeColor: '#980118',
all: false,
play: false,
scrubber: true,
fullscreen: true,
// tooltips (since 3.1)
tooltips: {
buttons: false,
//fullscreen: 'Enter fullscreen mode'
},
autoHide: {
enabled: true,
// always enable
fullsccreenOnly: false,
// make it hide faster
hideDelay: 1000,
mouseOutDelay: 500
}
}
}
});
/*
here comes the magic plugin. It uses first div.clips element as the
root for as playlist entries. loop parameter makes clips play
from the beginning to the end.
*/
$f("videoPlayer").playlist("div.clips:first", {loop:true});
});
</script>
Вот область HTML:
<div class="box-movie">
<!-- the player using splash image -->
<a class="player plain" id="videoPlayer">
<img src="images/play_text_large.png" />
</a>
<div class="clips" style="margin-top:15px;">
<!-- single playlist entry as an "template" -->
<a href="${url}">
<!--${title}--> <!--<span>${subTitle}</span>-->
<!--<em>${time}</em>-->
</a>
</div>
<!-- let rest of the page float normally -->
<br clear="all"/>
</div>
EDIT
Я действительно нашел, в чем проблема. Когда он загружается, это в значительной степени просто заставка, а не реальный игрок. Вы можете просмотреть это в http://thepartysource.com/index_test.php. Если я установлю второй клип на автозапуск, он сделает это после первого завершения.