일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- ucfirst
- Meta Tag
- 웹프로그래밍
- 문자열포함여부
- accept
- strtotime
- Javascript
- CSS
- mb_strimwidth
- JQuery
- 세션사용법
- date포맷
- input
- parent of iframe
- File
- mysql
- php
- date
- strpos
- 세션
- Selector
- element추가
- indexOf
- SubString
- attr
- disabled
- 이전주소
- 쿠키
- 시간계산
- HTML
- Today
- Total
목록HTML (18)
Heojju
Valid Accept Types Type Use CSV File (.csv) Excel Files 97-2003 (.xls) Excel Files 2007+ (./xlsx) Text Files (.txt) Image Files (.png, jpg, etc) HTML Files (.htm, .html) Video Files (.avi, .mpg, .mpeg, .mp4) Audio Files (.mp3, .wav, etc) PDF Files (.pdf)
SUMMARY 1. This is paragraph tag 2. All content and graphics on this web site are the property of the company Refsnes Data..실행화면 위의 SUMMARY를 누르면다른 스크립트가 없이 태그만으로 레이아웃 변경이 가능해진다.
▤ input type='file' accept속성어떤 형식의 파일을 허용할 것인지 정해주는 속성입니다. 속성값설명 file_extension - 파일 확장명(예:. gif,. jpg,. png,. doc)으로 시작하는 파일 확장명. - accept="application/msword" 식으로 사용가능.audio/* - 오디오 파일을 허용.video/* - 비디오 파일을 허용.image/* - 이미지 파일을 허용.media_type - 매개변수가 없는 유효한 미디어 유형. IANA Media Types 참고. 위와 같이 지정하게 되면, 위와 같이 사용자 지정 파일 이라는 형식으로 png,gif,jpeg 파일만을 보여줍니다. 브라우저마다 보이는 게 다릅니다.어떤 값을 넣냐에 따라 이미지 파일 / 오디오 파..
$(document).ready(function(){ $( "#draggable" ).draggable(); }); #draggable{width:150px; height:150px; border:1px solid #ccc;} #draggable:hover{cursor:move;} Element
▤ input 태그의 readonly 속성 결과화면 : 읽기만 가능할 뿐 값 변경은 불가능. ▤ input 태그의 disabled 속성. 결과화면 : 읽기만 가능할 뿐 값 변경은 불가능. ▤ readonly 와 disabled 의 차이form 으로 값을 보낼때 disabled의 값은 전송되지 않는다.
▤ contentEditablep나 div 태그와 같이 고정되어있는 텍스트를 가지고 있는 태그들에 입히는 속성(attribute)으로 텍스트 수정이 가능하게 된다. This is an editable paragraph.This is an editable paragraph.
.element{width:500px;}#layer{display:none; padding:10px; background:#e6e6e6;}#layerClose{font-size:15px; float:right;}.element:hover, #layerClose:hover{cursor:pointer; opacity:0.8;} 음식입니다. 닫기X $('.element').click(function(e) { var divTop = e.clientY - 20; //상단 좌표 var divLeft = e.clientX - 40; //좌측 좌표 $('#layer').css({ "top": divTop ,"left": divLeft , "position": "absolute" }).show(); }); $("#lay..
Toggle navigation Bootstrap Example Home About Contact BOOTSTRAP PARALLAX Parallax scrolling is a web site trend where the background content is moved at a different speed than the foreground content while scrolling. Nascetur per nec posuere turpis, lectus nec libero turpis nunc at, sed posuere mollis ullamcorper libero ante lectus, blandit pellentesque a, magna turpis est sapien duis blandit di..
▤ CSS div.imgBackground{background:black;} img.center-block:hover {opacity:0.3;} ▤ Javascript div.imgBackground{background:black;} document.getElementById('img1').onmouseover = function(){ this.style.opacity = "0.3"; } document.getElementById('img1').onmouseout = function(){ this.style.opacity = "1"; } ▤ jQuery div.imgBackground{background:black;} $('#img1').mouseover(function(){ $(this).css('op..
OnePage .page{height:100vh;} 1page 2page 3page 4page 1page 2page 3page 4page function stopWheel(e){ if(!e){ e = window.event; } /* IE7, IE8, Chrome, Safari */ if(e.preventDefault) { e.preventDefault(); } /* Chrome, Safari, Firefox */ e.returnValue = false; /* IE7, IE8 */ } $("#1page").on('mousewheel DOMMouseScroll', function(e){ stopWheel(); var E = e.originalEvent; delta = 0; if (E.detail) { de..