mirror of
https://github.com/10h30/display-featured-image-genesis.git
synced 2026-06-05 15:08:20 +09:00
14 lines
357 B
JavaScript
14 lines
357 B
JavaScript
( function ( document, $, undefined ) {
|
|
'use strict';
|
|
|
|
$( '.big-leader' ).css( { 'height': ( $(window).height() ) - ([BackStretchVars.height]) + 'px' });
|
|
$( '.big-leader' ).backstretch(
|
|
[BackStretchVars.src], {
|
|
centeredX: BackStretchVars.centeredX,
|
|
centeredY: BackStretchVars.centeredY,
|
|
fade: BackStretchVars.fade
|
|
}
|
|
);
|
|
|
|
})( this, jQuery );
|