본문 바로가기

전체 글140

HTML - iframe inline frame의 약자로 현재 웹페이지안에서 다른 웹페이지를 보기위한 태그. 다양한 웹페이지를 볼수 있으며 현재 유튜브 영상 공유 방법중의 하나. www.w3schools.com/tags/tag_iframe.asp HTML iframe tag HTML Tag Example An inline frame is marked up as follows: Try it Yourself » More "Try it Yourself" examples below. Definition and Usage The tag specifies an inli www.w3schools.com 2021. 4. 21.
HTML - table, image, list, form, input table : 표 작성 태그. 하위 태그로 thead, tbody, tfoot, tr, td 이 존재. thead : 표의 머리글 부분. 생략가능. tbody : 표의 본문내용. tfoot : 표의 바닥글 내용. 위 3개 태그는 생략가능. tr : 표의 행을 구분하는 태그. td : 행의 각 요소를 표현하는 태그. 여기에 각 요소의 값이 작성되어야한다. image img : 이미지 삽입용 태그. 속성으로 경로, 높이, 너비, 이미지 누락시 경고, 주석 이 있음. src, height, width, alt, title list : 리스트를 작성하기 위한 태그들. ol : 정렬된 리스트 라는 의미로 순서가 있는 리스트를 의미. 숫자 자동생성됨. ul : 정렬되지 않은 리스트 li : 리스트 요소를 의미. o.. 2021. 4. 21.
Unity - 모바일 해상도 고정 대응. Screen.SetResolution( width, Height, fullscreen) 으로 픽셀 해상도 고정 가능. 풀스크린 모드의 차이는 true 일때 화면 아래에 나오는 뒤로가기 홈버튼 이 나오지 않고 false일 때는 표시함. void ResolutionFix() { float targetWidthAps = 16.0f; float targetHeightAps = 9.0f; Camera.main.aspect = targetWidthAps / targetHeightAps; float widthRatio = (float)Screen.width / targetWidthAps; float heightRatio = (float)Screen.height / targetHeightAps; float widtha.. 2020. 6. 12.
Unity - Particle particle system 속성 Duration : 파티클이 플레이 되는 시간. Looping : 반복할지 선택. Play On Awake : 인스턴스 화 되면 재생 할건지. Stop Action : 재생이 멈추면 어떻게 할건지. - 무동작, 비활성화, 파괴, 콜백함수 날리기. 일단 요정도만 알아도 테스트에는 문제 없음. 2020. 6. 12.