I have a list of pairs text-images and I want Cycle cycling over it. That's ok if I don't have any other specific needs.
But what if I want all elements of this list to be shown but not all elements to be cycled?
I tried the slideExpr option but I guess it's not my case. I can't find any clue, am I missing something or it's not present this option?
EDIT:
What I want to obtain is that all four text-links are shown, but only 2 of them are picked for the cycle, and that only the cycling images are shown.
HTML:
<div id="slideshow">
<img class="presentImage" src="http://jquery.malsup.com/cycle/images/beach1.jpg" width="200" height="200" />
<img class="" src="http://jquery.malsup.com/cycle/images/beach2.jpg" width="200" height="200" />
<img class="" src="http://jquery.malsup.com/cycle/images/beach3.jpg" width="200" height="200" />
<img class="presentImage" src="http://jquery.malsup.com/cycle/images/beach4.jpg" width="200" height="200" />
JS:
$(document).ready(
function()
{
var str = '<h2 class="clienti">xxxxx</h2>'+
'<div id="past_clients" style="padding-top:60px; height:435px;">';
var titles =
[ '<div><h3 style="margin-top:0;">yyyyy</h3><a class="client" href="#" style="width:130px; display:block;">• img 1</a></div>',
'<div><a class="client" href="#">• img2</a></div>',
'<div><a class="client" href="#">• img3</a></div>',
'<div><a class="client" href="#">• img4</a></div></div>'
];
$('#slideshow').before(str).cycle({
fx: 'fade',
speed: 'fast',
timeout: 2000,
slideExpr: '.presentImage',
pager: '#past_clients',
pagerAnchorBuilder: function (index) { return titles[index]; }
});
}
);
Here you can find it: Thank you
Uncaught TypeError: Cannot read property 'innerHTML' of undefined. Why don't you try with jQuery? – Tom Sarduy Feb 4 at 9:13