Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 공모주 청약 일정
- Eclipse
- php
- 7월 공모주 청약 일정
- 주식 청약 일정
- 6월 공모주 청약 일정
- codeigniter
- linux
- html
- Stock ipo
- 제이쿼리
- 코드이그나이터
- 공모주
- 주식
- 맥
- 리눅스
- 오라클
- Oracle
- java
- IPO
- MYSQL
- Stock
- css
- jquery
- 자바스크립트
- JavaScript
- SQL
- 자바
- 공모주 청약
- 주식 청약
Archives
- Today
- Total
목록javascript screen example (2)
개발자의 끄적끄적
[javascript/jquery] javascript screen.width example / 자바스크립트 해상도 width 구하는 방법
[javascript/jquery] javascript screen.width example / 자바스크립트 해상도 width 구하는 방법 javascript 에서 현재 해상도의 가로값, 즉, width 를 확인하고 싶은경우가 있습니다. 반응형이나 등등 제어를 해야 하는 경우에 주로 사용이 되는데요! 그럴때는 screen 객체의 width 를 사용하시면 됩니다. 아래는 기본 사용법 입니다. screen.width 위에 나와있는 screen.width 를 console.log 나 alert 를 이용하여 출력해보면 결과는 아래와 같이 픽셀단위로 출력됩니다! 1920 참고들 하세요!
개발/javascript & jquery
2021. 7. 10. 03:00
[javascript/jquery] javascript screen.height example / 자바스크립트 해상도 height 확인 방법
[javascript/jquery] javascript screen.height example / 자바스크립트 해상도 height 확인 방법 javascript 에서 현재 사용자의 해상도중 세로값 즉, height를 확인하고 싶은경우 screen 객체를 사용하시면 됩니다. 아래와 같이 screen.height 를 console.log 를 이용하면 출력해보면 console.log(screen.height); 결과는 아래와 같이 픽셀값으로 반환됩니다! 1080 참고들 하세요!
개발/javascript & jquery
2021. 7. 10. 02:00