Working with jquery cycle2 for the first time. Works great when my slides are images, but when my slides are anchors it doesn't use the scrollHorz transition effect that I have specified. Instead the transition grows out of the top right of the anchor.
In the code below, the first slideshow works as expected, in the second slideshow, the transition effect is some unknown type (not scrollHorz).
<div class="page">
<div class="cycle-slideshow"
data-cycle-fx=scrollHorz
data-cycle-timeout=0
>
<!-- empty element for caption -->
<div class="cycle-caption"></div>
<!-- prev/next links -->
<div class="cycle-prev"></div>
<div class="cycle-next"></div>
<img src="../Images/top-mod1.png" />
<img src="../Images/top-mod2.png" />
<img src="../Images/top-mod3.png" />
<img src="../Images/top-mod4.png" />
</div>
<div class="cycle-slideshow"
data-cycle-slides="a"
data-cycle-fx=scrollHorz
data-cycle-timeout=0
>
<!-- empty element for caption -->
<div class="cycle-caption"></div>
<!-- prev/next links -->
<div class="cycle-prev"></div>
<div class="cycle-next"></div>
<a href="http://www.google.com"><img src="../Images/top-mod1.png" /></a>
<a href="http://www.yahoo.com"><img src="../Images/top-mod2.png" /></a>
<a href="http://www.facebook.com"><img src="../Images/top-mod3.png" /></a>
<a href="http://www.weather.com"><img src="../Images/top-mod4.png" /></a>
</div>
</div>