브라우저에서 뷰를 확대하거나 축소했을때 해당 크기의 비율을 가져오고 싶을때 사용한다
뷰의 비율을 알아내기 위해서는 window.devicePixelRatio 를 사용하는데
모든 브라우저에서 적용되진 않는다
<html>
<head>
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
</head>
<body>
<script type="text/javascript">
$(window).resize(function() {
alert(window.devicePixelRatio)
});
</script>
</body>
</html>