9f5ed64d81
* Add full support for the featured slider powered by JS (except auto-slide) * Change the title hover state of large stickies to white * Prevent plain text posts from being displayed transparently over images * Update slider featured image size to 500x300 * Add comment blocks to showcase.php git-svn-id: https://develop.svn.wordpress.org/trunk@17761 602fd350-edb4-49c9-b593-d223f7449a82
17 lines
473 B
JavaScript
17 lines
473 B
JavaScript
(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); |