Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- PHP
- MSSQL
- JSP
- 블로그 수익화
- 블로그 방문자 늘리기
- Eclipse
- Jexcel
- IIS
- oralce
- CSS
- 인테리어그림
- 소득세
- 즐겨찾기 추가
- Adobe pdf reader
- samba
- 국민연금
- 블로그 조회수
- 블로그 조회수 늘리기
- MySQL
- Vista
- .NET
- 에덴미술
- flash
- 갑근세
- JavaScript
- Jrun
- Administrator
- CVS
- HTML
- 블루수국그림
Archives
- Today
- Total
I LOVE EJ
media쿼리 portrait landscape 구분 본문
1. css로는
@media screen and (orientation:portrait){
//새로로 들었을때 스타일 적용
}
@media screen and (orientation:landscape){
//가로로 들었을때 스타일 적용
}
2. jQuery
if($(window).innerHeight() < $(window).innerWidth()){
$('.img').css({
//가로로 들었을때의 스타일 적용
})
} else {
$('.img').css({
//새로로들었을때 스타일 적용
})
}
3. Vanilla JavaScript
if(window.innerHeight < window.innerWidth){
document.querySelector('.img').style.스타일종류 = 가로스타일
} else {
document.querySelector('.img').style.스타일종류 = 새로스타일
}
'Web publishing > HTML & CSS' 카테고리의 다른 글
<iframe>으로 올린 유투브 동영상 z-index 문제 (0) | 2014.10.13 |
---|---|
IIS7 에서 woff MIME 등록하기. (0) | 2014.02.10 |
모바일 실제 해상도와 device-width (0) | 2014.01.28 |
구글 웹폰트 사용하기 (0) | 2013.12.16 |
디바이스별로 보는 사이트 (0) | 2013.08.27 |