Created
October 9, 2015 13:39
-
-
Save pauloiankoski/577830e1bbdbd0202d65 to your computer and use it in GitHub Desktop.
Banner padrão
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
.metaslider { | |
.ms-image { | |
background-position : center center !important; | |
background-size : cover !important; | |
height : 500px; | |
} | |
} |
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
$( '.home .metaslider img' ).each(function(){ | |
var src = $(this).attr( 'src' ); | |
$(this).parents( 'li' ).css( 'background-image', 'url('+src+')' ); | |
$(this).remove(); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment