<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name = "viewport" content = "width = device-width, height = device-height" />
<title>Mobile-Web-App: Detect Resize</title>
<script type="text/javascript">
function doOnLoad(){
window.addEventListener(
"resize",
function() {
var orientation;
var windowWidth = window.innerWidth;
var windowHeight = window.innerHeight;
if(windowWidth > windowHeight){
orientation = "Landscape";
}else if(windowWidth < windowHeight){
orientation = "Portrait";
}else{
orientation = "Square";
}
document.getElementById("browserinfo").innerHTML
= orientation + " : " + windowWidth + " x " + windowHeight
+ "<br/>Screen Size: " + screen.width + " x " + screen.height;
},
false);
}
</script>
</head>
<body onload="doOnLoad();">
<h1>Mobile-Web-App: Javascript Exercise - Detect Resize</h1>
<div id="browserinfo"></div>
</body>
</html>
Tuesday, August 28, 2012
Detect screen size using Javascript
Example to detect screen size using Javascript:
Labels:
Code.Javascript
Subscribe to:
Post Comments (Atom)

No comments:
Post a Comment