출처: https://webclub.tistory.com/256 [Web Club]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
<!-- Modernizr를 이용한 mobile 구분 (pc 화면에서 모바일 이용 유도) -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/modernizr/2.8.3/modernizr.js" integrity="sha256-ffw+9zwShMev88XNrDgS0hLIuJkDfXhgyLogod77mn8=" crossorigin="anonymous"></script>
<script>
$(document).ready(function(){
if (!(window.devicePixelRatio > 1)) {
// supported
console.log("pc");
$("#devicePixelRatio").show();
} else {
$("#devicePixelRatio").hide();
}
});
</script>
<style>
#devicePixelRatio {
background: white;
width: 100%;
height: 100%;
position: fixed;
display: table;
z-index: 999;
text-align: center;
font-size: xx-large;
}
#devicePixelRatio > div{ margin-top: 20vw; color: #fe4e74;}
</style>
<div id="devicePixelRatio">
<div>
휴대 전화에서 사용해주세요.
</div>
</div>
<!-- //Modernizr를 이용한 mobile 구분 (pc 화면에서 모바일 이용 유도) -->
|
cs |
''o'' 카테고리의 다른 글
안드로이드 스튜디오 파이어 베이스 (0) | 2020.11.10 |
---|---|
딥링크 / 동적 링크 (0) | 2020.11.10 |
글자 수 세기 (0) | 2020.10.30 |
세션에 관해 (0) | 2020.10.21 |
블로그에 코드 작성한거 올릴 때 (0) | 2020.09.17 |