wordpress/php-fpm/wordpress_files/themes/twentyeleven/js/showcase.js

17 lines
489 B
JavaScript
Raw Normal View History

2020-05-22 03:40:23 +02:00
(function($) {
$(document).ready( function() {
$('.feature-slider a').click(function(e) {
$('.featured-posts section.featured-post').css({
opacity: 0,
visibility: 'hidden'
});
$(this.hash).css({
opacity: 1,
visibility: 'visible'
});
$('.feature-slider a').removeClass('active');
$(this).addClass('active');
e.preventDefault();
});
});
})(jQuery);