Jak zmierzyć wielkość ekranu
Poniższy kod przedstawia sposób jak zmierzyć wysokość i szerokość ekranu.
HTML <div class="fixed"></div> <p class="device"> </p>
CSS
.fixed { position:fixed; z-index:0; top:0; left:0; right:0; bottom:0;}
JQUERY
$(".device").text($(".fixed").width() + " x " + $(".fixed").height());
$(window).resize(function(){
$(".device").text($(".fixed").width() + " x " + $(".fixed").height());
});
Strona główna bloga
