-
-
Save aendra-rininsland/4684237 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('.view-homepage-slider').cycle({ | |
fx: 'fade', | |
speed: 'slow', | |
timeout: 0, | |
before: onBefore, | |
after: onAfter, | |
}); | |
function onBefore(curr, next, opts){ | |
// Code to do stuff before the slide changes | |
$('.views-field-title').slideUp(); | |
$('.views-field-field-homepage-slider-text').slideUp(); | |
} | |
function onAfter(curr, next, opts){ | |
// Code to do stuff after the slide changes | |
$('.views-field-title').slideDown(); | |
$('.views-field-field-homepage-slider-text').slideDown(); | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment