轮播播放列表中的缩略图顺序
我们为视频播放器设置了带有缩略图的轮播播放列表。 系统会查看缩略图文件夹并显示转盘中的所有缩略图。每个拇指都可以启动自己的视频。 除了我无法订购缩略图之外,一切都很好。我将它们命名为:00mythumb.jpg、01mythumb.jpg 等...并且我正在寻找一种在传送带中订购它们的方法。
我的代码如下:
<ul id="mycarousel" class="jcarousel-skin-tango">
<?php
$i = 0;
$dir = opendir('./gallery/pics');
while ($file = @readdir($dir)) {
//Récupération de l'extension du fichier
$extension=substr(strrchr($file,'.'),1);
if($file != '.' && $file != '..'){
$i++;
//Suppression de l'extension du fichier
$pos = strpos($file, '.');
$file = substr($file, 0, $pos);
//Inscription de la ligne en HTML
echo '<li><a onclick="jwplayer().load(\'./gallery/video/'. $file. '.mp4\')"><imag src="./gallery/pics/'. $file. '.jpg" width="164" height="95" alt=""/></a></li>';
}
} ?>
任何帮助将不胜感激。 非常感谢你,并对我的英语不好表示歉意。 PS:我用 imag 替换了 img,因为堆栈溢出不允许我将 img 标签放入代码中
we setup a carrousel playlist with thumbnails for a video player.
the system looks into a thumbnail folder and display all thumbs in the carrousel. each thumb can launch is own video.
everything works great except the fact that i cannot order my thumbnails. I named them : 00mythumb.jpg, 01mythumb.jpg etc... and I'm looking for a way to order them in the carrousel.
my code is as follow :
<ul id="mycarousel" class="jcarousel-skin-tango">
<?php
$i = 0;
$dir = opendir('./gallery/pics');
while ($file = @readdir($dir)) {
//Récupération de l'extension du fichier
$extension=substr(strrchr($file,'.'),1);
if($file != '.' && $file != '..'){
$i++;
//Suppression de l'extension du fichier
$pos = strpos($file, '.');
$file = substr($file, 0, $pos);
//Inscription de la ligne en HTML
echo '<li><a onclick="jwplayer().load(\'./gallery/video/'. $file. '.mp4\')"><imag src="./gallery/pics/'. $file. '.jpg" width="164" height="95" alt=""/></a></li>';
}
}
?>
any help would be appreciated.
thank you very much and apologies for my bad english.
ps : i replaced img by imag because stack overflow do not allowed me to put img tag inside the code
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)