mirror of
https://github.com/wassname/bootstrap-landing-pages.git
synced 2026-06-27 17:29:51 +08:00
9 lines
261 B
JavaScript
9 lines
261 B
JavaScript
/* resize .full-image class when the windows height change */
|
|
$(document).ready(function() {
|
|
|
|
$('.full-image').css({'height':(($(window).height()))+'px'});
|
|
|
|
$(window).resize(function(){
|
|
$('.full-image').css({'height':(($(window).height()))+'px'});
|
|
});
|
|
}); |