2016-11-06 01:24:05 +08:00
|
|
|
|
$(function () {
|
2016-12-20 01:04:10 +08:00
|
|
|
|
$('#main-content').addClass('welcome-bg');
|
2016-11-06 01:24:05 +08:00
|
|
|
|
function resposive() {
|
2016-11-12 20:43:12 +08:00
|
|
|
|
var height = $(window).height();
|
|
|
|
|
if (height > 672)
|
|
|
|
|
$('.well-bg').height(height - 270);
|
|
|
|
|
else
|
|
|
|
|
$('.well-bg').height(height - 158);
|
2016-11-06 01:24:05 +08:00
|
|
|
|
}
|
|
|
|
|
$(window).on('load', resposive);
|
|
|
|
|
$(window).on('resize', resposive);
|
|
|
|
|
});
|