0

我正在为 Wordpress 使用 Revolution Slider 插件。我的滑块中有 5 张图片和 30 条短文。每次滑块更改图像时,我想随机显示这 30 个文本中的 1 个。你能建议我怎么做(也改变插件)

谢谢

4

1 回答 1

0

这可以通过简短的脚本和 css 规则轻松添加。

CSS 部分

.forcenoshow { display:none !important} 

JS部分

jQuery('#yoursliderid').bind('.revolution.slide.onafterswap',function() {
  var randomindex = Math.round(Math.random()*30);
  jQuery('.current-sr-slide-visible').find('.tp-caption').each(function(i) {
      if (i!==randomindex) jQuery(this).addClass("forcenoshow");
});

这将为当前幻灯片中的所有图层提供“显示:无!重要”属性以隐藏图层。幻灯片中只有 1 个图层可见。

更多常见问题和解答: http ://themepunch.com/support-center

于 2015-03-16T15:33:47.143 回答