0

我在 wordpress 中使用 prettyPhoto 灯箱

我需要显示 150 像素的 wordpress 画廊缩略图而不是默认的 prettyPhoto 缩略图(他们使用大图像作为缩略图)

这是创建缩略图的代码

for (var i=0; i < pp_images.length; i++) {
    if(!pp_images[i].match(/\b(jpg|jpeg|png|gif)\b/gi)){
        classname = 'default';
        img_src = '';
    }else{
        classname = '';
        img_src = pp_images[i];
    }
    toInject += "<li class='"+classname+"'><a href='#'><img src='" + img_src + "' width='75' height='75' alt='' /></a></li>";
};

这是图像链接的输出

<img src="http://127.0.0.1/wordpress/photopname1.jpg" width="75" height="75" alt="">
<img src="http://127.0.0.1/wordpress/photopname2.gif" width="75" height="75" alt="">
<img src="http://127.0.0.1/wordpress/photopname3.png" width="75" height="75" alt="">


我需要输出是这样的

<img src="http://127.0.0.1/wordpress/photopname1-150x150.jpg" width="75" height="75" alt="">
<img src="http://127.0.0.1/wordpress/photopname2-150x150.gif" width="75" height="75" alt="">
<img src="http://127.0.0.1/wordpress/photopname3-150x150.png" width="75" height="75" alt="">

在图像扩展“-150x150”之前添加

谢谢 :)

4

2 回答 2

2

如果我理解你的话,你只需要这个:

 toInject += "<li class='"+classname+"'><a href='#'><img src='" + img_src.split(".").join("-150x150.") + "' width='75' height='75' alt='' /></a></li>";

问题编辑后更新: 您是否可以像这样在最后添加完整路径:

 toInject += "<li class='"+classname+"'><a href='#'><img src='http://127.0.0.1/wordpress/" + img_src.split(".").join("-150x150.") + "' width='75' height='75' alt='' /></a></li>";

或者你的pp_images阵列已经有了完整的路径?

于 2013-06-07T21:16:25.257 回答
2

处理多个.s的解决方案

var size = '-150x150';



for (var i=0; i < pp_images.length; i++) {
  if(!pp_images[i].match(/\b(jpg|jpeg|png|gif)\b/gi)){
      classname = 'default';
      img_src = '';
  }else{
      classname = '';
      img_src = pp_images[i];
  }

  //ex: img_src = a.b.png
  var src = img_src.split('.'); //ex: ['a', 'b', 'png']
  src[src.length - 2] = src[src.length - 2] + size; //ex: ['a', 'b-150x150', 'png']
  src = src.join('.');//a.b-150x150.png

  toInject += "<li class='"+classname+"'><a href='#'><img src='" 
           + src + "' width='75' height='75' alt='' /></a></li>";
};
于 2013-06-07T21:28:06.370 回答