I am a newcomer to Foundation 4, but I have some coding experience. Currently, I am in the process of transitioning my photography blog (www.momentaryawe.com/blog) from Wordpress with a custom theme to a custom theme built on Foundation 4.
Most aspects of the transition have gone smoothly, however, I have hit a roadblock. If you visit this link () you will see that currently when someone hovers over an image, another image is displayed which is the original shot from the camera. Both images are uploaded when the post is created. This hover effect is achieved through the following jQuery code:
$(function() {
$("#rolloverOriginal ul li").hover(
function() {
$(this).find('p').fadeIn();
},
function() {
$(this).find('p').fadeOut();
}
);
});
My issue arises because Foundation 4 uses Zepto which does not support the hover option. I am unsure of how to replicate this effect using Foundation 4. I considered using Orbit for this, but so far I have been unable to get it to work on hover.