featured-content.js 511 B

123456789101112131415161718192021222324252627
  1. ( function( $ ) {
  2. var featuredContent
  3. function initSlider() {
  4. featuredContent
  5. .flexslider( {
  6. selector: '.featured-content-wrapper > .featured-post',
  7. animation: 'slide',
  8. smoothHeight: true,
  9. slideshow: false,
  10. animationSpeed: 500,
  11. directionNav: false,
  12. useCSS: false
  13. } )
  14. .animate( {
  15. 'opacity': 1
  16. }, 500 );
  17. }
  18. $( document ).ready( function() {
  19. featuredContent = $( '.featured-content' );
  20. $( window ).on( 'load.shoreditch', initSlider );
  21. } );
  22. } )( jQuery );