轮播播放列表中的缩略图顺序

发布于 2024-12-10 22:03:29 字数 934 浏览 0 评论 0原文

我们为视频播放器设置了带有缩略图的轮播播放列表。 系统会查看缩略图文件夹并显示转盘中的所有缩略图。每个拇指都可以启动自己的视频。 除了我无法订购缩略图之外,一切都很好。我将它们命名为: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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

妄司 2024-12-17 22:03:30
<ul id="mycarousel" class="jcarousel-skin-tango">
<?php
 $i = 0;
 $dir = opendir('./gallery/pics');
 $files = array();
 while ($file = @readdir($dir)) {
      $files[] = $file;
 }
 sort($files);
 foreach($files as $file) {
   //Récupération de l'extension du fichier
   $extension=substr(strrchr($file,'.'),1);
   if($file != '.' && $file != '..'){
      //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>';
   }
 }
<ul id="mycarousel" class="jcarousel-skin-tango">
<?php
 $i = 0;
 $dir = opendir('./gallery/pics');
 $files = array();
 while ($file = @readdir($dir)) {
      $files[] = $file;
 }
 sort($files);
 foreach($files as $file) {
   //Récupération de l'extension du fichier
   $extension=substr(strrchr($file,'.'),1);
   if($file != '.' && $file != '..'){
      //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>';
   }
 }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文