-
2015-2016 2016‧04‧14
TOYOTA KOREA website renewal
토요타 코리아 - 웹사이트 반응형 웹사이트로 제작하였습니다. 개발 초에는 ie7부터 맞추는 작업도 있었으며, 비주얼적인 면이 많고 이와 함께 인터렉션들도 많기 때문에 여러 사용자들의 행동 변수들을 감안하여 시나리오에 맞춰 개발하게 되었습니다. youtube 영상을 담은 슬라이드 플러그인, 비규칙적 카드 레이아웃 플러그인을 만들어서 적용시켰습니다. [vimeo clip_id="203967880" height="350"]
-
Html, CSS 2014‧02‧10
반응형웹에서 이미지 높이 auto 값이 ie 8 이하에서 오류 대처
img { width: inherit; /* Make images fill their parent's space. Solves IE8. */ max-width: 100%; /* Add !important if needed. */ height: auto; /* Add !important if needed. */ } 또는 img { max-width:100%; height: auto; } /* Enough everywhere except IE8. */ @media \0screen {img { width: auto }} /* Prevent height distortion […]