我正在使用Word Slpress的Revolution Slider插件。 我的滑块中有5个图像,我有30个短文本。我希望每次滑块更改图像时随机显示这30个文本中的一个。 你能建议我怎么做(也改变插件)
由于
答案 0 :(得分: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");
});
这将为当前幻灯片中的所有图层提供一个" display:none!important"用于隐藏图层的属性。幻灯片中只能看到1个图层。
更多常见问题解答和答案:http://themepunch.com/support-center