일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Git
- Design Patterns
- db
- elasticsearch
- AWS
- MySQL
- Spring
- php
- tool
- it
- ReactJS
- Spring Boot
- linux
- laravel
- javascript
- java
- 맛집
- Oracle
- redis
- devops
- ubuntu
- 요리
- IntelliJ
- Web Server
- Spring Batch
- jsp
- Gradle
- jenkins
- JVM
- springboot
Archives
- Today
- Total
아무거나
input file 찾아보기 버튼 image로 변경 본문
반응형
[예제]
.file_input_textbox {
float:left;
height:29px;
}
.file_input_div {
position:relative;
width:80px;
height:36px;
overflow:hidden;
}
.file_input_img_btn {
padding:0 0 0 5px;
}
.file_input_hidden {
font-size:29px;
position:absolute;
right:0px;
top:0px;
opacity:0;
filter: alpha(opacity=0);
-ms-filter: alpha(opacity=0);
cursor:pointer;
}
<input type="text" id="fileName" class="file_input_textbox" readonly >
<div class="file_input_div">
<img src="open.jpg" class="file_input_img_btn" alt="open" />
<input type="file" name="file_1" class="file_input_hidden" onchange="javascript: document.getElementById('fileName').value = this.value"/>
</div>
원리를 설명 하자면 텍스트 박스, 첨부파일 박스를 각각 따로두고 참부파일의 찾아보기 그 버튼의 opacity 값을 0으로 조정하여
눈에 안보이게 만드는 것이다.
눈에 보이지는 않지만 클릭은 가능한 상태이므로 position 값을 absolute 로 조정하여 이미지 버튼에 얹혀놓는 것이다.
따라서 사람들은 이미지를 클릭 한것처럼 느끼겠지만 실은 눈에 안보이는 찾아보기 버튼을 누른것이다.
그리고 onchange 속성에 옆에 text 박스에 파일 경로 보이게끔 처리해놓으면 끝.
출처: http://yangyag.tistory.com/277 [Hello Brother!]
반응형
'Javascript & HTML & CSS > HTML' 카테고리의 다른 글
indexedDB (0) | 2024.11.11 |
---|---|
모바일 키패드에서 숫자만 입력 가능하며 type=password 와 같이 만드는법 (0) | 2020.04.06 |
[html5 / html4] 모바일웹 이미지/갤러리 제어 accept 속성 (0) | 2019.12.24 |
html에서 카메라 호출하는 태 (0) | 2019.12.24 |
파일 첨부 시 특정 확장자만 보이게 하기 (0) | 2019.12.24 |
Comments