[JqueryMobile] - JqueryMobile Device 가로세로 길이구하는 소스 예제
Jquery & Mobile 2011. 9. 1. 11:28반응형
<script type="text/javascript">
var client_width = "";
var client_height = "";
$(function(){
report();
});
function report() {
$('#display').html(
$('#load').width()+'x'+$('#load').height()
);
client_width = $('#load').width() + "px";
client_height = $('#load').height() + "px";
}
</script>
</body>
</script>
<body onresize="report()">
<!-- Start of first page -->
<div data-role="page" id="load" style="display: none;">
<div data-role="header" data-backbtn="false">
</div>
<div data-role="content">
<div id="display">
</div>
</div>
<div data-role="footer" >
</div>
</div>
반응형
'Jquery & Mobile' 카테고리의 다른 글
[Mobile] - 모바일웹 Href 태그속성들 (0) | 2011.09.19 |
---|---|
[Mobile] - 모바일 웹에서 바탕화면 아이콘 추가소스 (0) | 2011.09.19 |
[JqueryMobile] - 현재화면의 가로세로 사이즈 구하기 (0) | 2011.08.22 |
[JqueryMobile] - 화면의 가로, 세로 사이즈 구하는 방법 (0) | 2011.08.04 |
[Jquery] - 웹디자이너분들 참고할만한 Jquery 사이트 (0) | 2011.08.01 |