Skip to content

Instantly share code, notes, and snippets.

View webcorgi's full-sized avatar
👋

DAEHYUN KIM webcorgi

👋
  • Rhaon Entertainment
  • korea
View GitHub Profile
@webcorgi
webcorgi / line-height
Created April 16, 2020 12:19
[CSS, IOS] input 안 글자의 높이가 맞지 않을 때 (line-height)
input {
line-height:normal
}
@webcorgi
webcorgi / daum map API
Created April 7, 2020 09:19
[API] 다음지도 API (daum map API)
<div id="map"></div>
<script type="text/javascript" src="//dapi.kakao.com/v2/maps/sdk.js?appkey=837c958b9c7bcd70300fc9dd00af5e64"></script>
<script>
var mapContainer = document.getElementById('map'), // 지도를 표시할 div
mapOption = {
center: new daum.maps.LatLng(37.4919464, 127.0087843), // 지도의 중심좌표
level: 4 // 지도의 확대 레벨
};
@webcorgi
webcorgi / naver map API
Created April 7, 2020 09:17
[API] 네이버지도 (naver map API)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="ko">
<head>
<title>네이버지도</title>
<meta charset="utf-8">
<script type="text/javascript" src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
<script type="text/javascript" src="https://openapi.map.naver.com/openapi/v3/maps.js?clientId=6BMV0NuXp6jL3BkPm5SR"></script>
</head>
<body style="margin:0px;padding:0px;">
@webcorgi
webcorgi / google map API
Created April 7, 2020 09:15
[API] 구글지도 사용 (google map API)
구글지도넣기
본사이트 : https://developers.google.com/maps/documentation/javascript/
<!-- 지도 -->
<div class="mapImg">
<script src="http://maps.googleapis.com/maps/api/js?key=AIzaSyAZu1tJ_ciKA2fKQs4Wlf8BOdcwFBodE6I&language=ko&region=KR"></script>
<script>
var myCenter=new google.maps.LatLng(35.8971881,128.5813469);
function initialize()
@webcorgi
webcorgi / IE version divider
Last active April 7, 2020 02:12
[IE] 6,7,8,9 IE 각 버전 조건 구분 (each version divider)
<!--[if IE]>
익스만 적용
<![endif]-->
<!--[if IE 6]>
익스6만 적용
<![endif]-->
<!--[if IE 7]>
익스7만 적용
@webcorgi
webcorgi / mouse Right click, drag, select
Last active April 7, 2020 02:12
[HTML] 마우스 우클릭, 드래그, 블럭선택 방지 (Right click, drag, block select prevention)
<body translate="no" oncontextmenu="return false" ondragstart="return false" onselectstart="return false">
<div id="mouse_no" oncontextmenu="return false" ondragstart="return false" onselectstart="return false">
</div>
</body>
@webcorgi
webcorgi / A4
Last active March 5, 2023 08:05
[HTML, CSS] A4용지 사이즈 코딩 (A4 SIZE print)
<div class="book">
<div class="page">
<div class="subpage">Page 1/2</div>
</div>
<div class="page">
<div class="subpage">Page 2/2</div>
</div>
</div>
@webcorgi
webcorgi / CSS IOS error
Created April 7, 2020 01:26
[CSS, IOS] input 둥근테두리 및 그림자 삭제 ( inner shadow, border-radius )
input {
/* 삭제한 후 */
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
/* 스타일 주면 IOS에서 그림자 사라짐 */
border:1px solid #dbe0e7;
/* 둥근 테두리 삭제 */
@webcorgi
webcorgi / When overflowing
Last active April 7, 2020 01:08
[CSS] 글 넘칠 때 (When overflowing)
/* 한 줄 자르기 */
display: inline-block;
width: 200px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
/* 여러 줄 자르기 */
white-space: normal;
line-height: 1.2;