DTE :]

Tuesday, February 7, 2012

Set Ukuran Elemen Satu Layar Penuh dengan jQuery

$('#overlay').css({
    width:  $(window).width(),
    height: $(window).height()
});

Lebar Mengikuti Ukuran Layar Saat Layar Berubah Ukuran

function elasticWidth() {
    $('#overlay').css({
        width:  $(window).width(),
        height: $(window).height()
    });
} elasticWidth();

$(window).resize(function() {
    elasticWidth();
});

Lihat Demo

Labels: , ,

4 Comments:

Post a Comment



<< Home