질문이라 죄송합니다;;;;
input style 태그로 bg로 이미지를 하나 넣어놓고, 마우스 over했을때 다른이미지가 나오게끔 버튼형식을 만들순없을까요? onfocus를 보다가 생각이 나서;;; 아직 초보라 진도가 안나가네요 ㅠ;;
아시는분 이게 가능한걸까요 ㅎ;?
댓글 5개
14년 전
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>over image on input stly</title>
<style type="text/css">
*{
margin:0;
padding:0;
}
body{
font-size:63%;
color:#000;
}
/*input*/
.input_on{
padding:2px 8px 0pt 3px;
height:18px;
border:1px solid #999;
background:url(http://www.google.com/images/nav_logo36.png) no-repeat;
}
.input_off{
padding:2px 8px 0pt 3px;
height:18px;
border:1px solid #CCC;
background-color:#FFF;
}
.input_move{
padding:2px 8px 0pt 3px;
height:18px;
border:1px solid #999;
background:url(http://www.google.com/images/nav_logo36.png) no-repeat;
}
.input_out{
/*height:16px;기본높이*/
padding:2px 8px 0pt 3px;
height:18px;
border:1px solid #CCC;
background-color:#FFF;
}
/*form*/
ul.input_test{
margin:20px auto 0 auto;
width:500px;
list-style-type:none;
}
ul.input_test li{
width:500px;
height:22px;
margin-bottom:10px;
}
.input_test label{
float:left;
padding-right:10px;
width:100px;
line-height:22px;
text-align:right;
font-size:1.4em;
}
.input_test p{
float:left;
_margin-top:-1px;
}
.input_test span{
float:left;
padding-left:10px;
line-height:22px;
text-align:left;
font-size:1.2em;
color:#999;
}
</style>
</head>
<body>
<ul class="input_test">
<li>
<label for="inp_name">이름:</label>
<p><input id="inp_name" class="input_out" name="" type="text" onfocus="this.className='input_on';this.onmouseout=''" onblur="this.className='input_off';this.onmouseout=function(){this.className='input_out'};" onmousemove="this.className='input_move'" onmouseout="this.className='input_out'" /></p>
<span>ex) 홍 길 똥?</span>
</li>
<li>
<label for="inp_email">Email:</label>
<p><input id="inp_email" class="input_out" name="" type="text" onfocus="this.className='input_on';this.onmouseout=''" onblur="this.className='input_off';this.onmouseout=function(){this.className='input_out'};" onmousemove="this.className='input_move'" onmouseout="this.className='input_out'" /></p>
<span>ex) test@naver.com</span>
</li>
<li>
<label for="inp_web">home:</label>
<p><input id="inp_web" class="input_out" name="" type="text" onfocus="this.className='input_on';this.onmouseout=''" onblur="this.className='input_off';this.onmouseout=function(){this.className='input_out'};" onmousemove="this.className='input_move'" onmouseout="this.className='input_out'" /></p>
<span>ex) test.com</span>
</li>
</ul>
</body>
</html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>over image on input stly</title>
<style type="text/css">
*{
margin:0;
padding:0;
}
body{
font-size:63%;
color:#000;
}
/*input*/
.input_on{
padding:2px 8px 0pt 3px;
height:18px;
border:1px solid #999;
background:url(http://www.google.com/images/nav_logo36.png) no-repeat;
}
.input_off{
padding:2px 8px 0pt 3px;
height:18px;
border:1px solid #CCC;
background-color:#FFF;
}
.input_move{
padding:2px 8px 0pt 3px;
height:18px;
border:1px solid #999;
background:url(http://www.google.com/images/nav_logo36.png) no-repeat;
}
.input_out{
/*height:16px;기본높이*/
padding:2px 8px 0pt 3px;
height:18px;
border:1px solid #CCC;
background-color:#FFF;
}
/*form*/
ul.input_test{
margin:20px auto 0 auto;
width:500px;
list-style-type:none;
}
ul.input_test li{
width:500px;
height:22px;
margin-bottom:10px;
}
.input_test label{
float:left;
padding-right:10px;
width:100px;
line-height:22px;
text-align:right;
font-size:1.4em;
}
.input_test p{
float:left;
_margin-top:-1px;
}
.input_test span{
float:left;
padding-left:10px;
line-height:22px;
text-align:left;
font-size:1.2em;
color:#999;
}
</style>
</head>
<body>
<ul class="input_test">
<li>
<label for="inp_name">이름:</label>
<p><input id="inp_name" class="input_out" name="" type="text" onfocus="this.className='input_on';this.onmouseout=''" onblur="this.className='input_off';this.onmouseout=function(){this.className='input_out'};" onmousemove="this.className='input_move'" onmouseout="this.className='input_out'" /></p>
<span>ex) 홍 길 똥?</span>
</li>
<li>
<label for="inp_email">Email:</label>
<p><input id="inp_email" class="input_out" name="" type="text" onfocus="this.className='input_on';this.onmouseout=''" onblur="this.className='input_off';this.onmouseout=function(){this.className='input_out'};" onmousemove="this.className='input_move'" onmouseout="this.className='input_out'" /></p>
<span>ex) test@naver.com</span>
</li>
<li>
<label for="inp_web">home:</label>
<p><input id="inp_web" class="input_out" name="" type="text" onfocus="this.className='input_on';this.onmouseout=''" onblur="this.className='input_off';this.onmouseout=function(){this.className='input_out'};" onmousemove="this.className='input_move'" onmouseout="this.className='input_out'" /></p>
<span>ex) test.com</span>
</li>
</ul>
</body>
</html>
14년 전
一現 님의 아주 명확한 답변. 친절한 쏘스... 와우~
근데 제생각은 기본적으로 제공되는 input 등은 브라우저나 사람들 개인 pc 에 따라
특성을 타는 경우가 종종 있더군요 해서 기본적으로 제공하는 것들은 그냥 css 나 자스 처리 없이 그냥
나뚜는게 속 편하더군요
근데 제생각은 기본적으로 제공되는 input 등은 브라우저나 사람들 개인 pc 에 따라
특성을 타는 경우가 종종 있더군요 해서 기본적으로 제공하는 것들은 그냥 css 나 자스 처리 없이 그냥
나뚜는게 속 편하더군요
ParkBang
14년 전
네 저도 input 에 bg 넣어서 버튼 만들면 브라우져마다 다르게 뜨는 경우가 있어서 못쓰겠더라고요
14년 전
와우! 완전 감사합니다 ㅋㅋㅋㅋㅋㅋ
14년 전
와우! ㅎㅎ
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 8230 | 9년 전 | 192 | ||
| 8229 | 9년 전 | 175 | ||
| 8228 |
커네드커네드
|
9년 전 | 214 | |
| 8227 | 9년 전 | 253 | ||
| 8226 | 9년 전 | 273 | ||
| 8225 | 9년 전 | 255 | ||
| 8224 | 9년 전 | 258 | ||
| 8223 | 9년 전 | 238 | ||
| 8222 |
|
9년 전 | 302 | |
| 8221 | 9년 전 | 199 | ||
| 8220 | 9년 전 | 240 | ||
| 8219 | 9년 전 | 213 | ||
| 8218 | 9년 전 | 256 | ||
| 8217 |
star3840
|
9년 전 | 217 | |
| 8216 | 9년 전 | 291 | ||
| 8215 | 9년 전 | 240 | ||
| 8214 | 9년 전 | 343 | ||
| 8213 | 9년 전 | 302 | ||
| 8212 | 9년 전 | 217 | ||
| 8211 | 9년 전 | 387 | ||
| 8210 | 9년 전 | 381 | ||
| 8209 | 9년 전 | 462 | ||
| 8208 | 9년 전 | 344 | ||
| 8207 | 9년 전 | 358 | ||
| 8206 |
|
9년 전 | 307 | |
| 8205 | 9년 전 | 278 | ||
| 8204 | 9년 전 | 267 | ||
| 8203 | 9년 전 | 345 | ||
| 8202 | 9년 전 | 253 | ||
| 8201 | 9년 전 | 297 | ||
| 8200 | 9년 전 | 299 | ||
| 8199 | 9년 전 | 323 | ||
| 8198 | 9년 전 | 287 | ||
| 8197 | 9년 전 | 274 | ||
| 8196 | 9년 전 | 697 | ||
| 8195 | 9년 전 | 282 | ||
| 8194 | 9년 전 | 393 | ||
| 8193 | 9년 전 | 308 | ||
| 8192 | 9년 전 | 312 | ||
| 8191 | 9년 전 | 275 | ||
| 8190 | 9년 전 | 256 | ||
| 8189 | 9년 전 | 318 | ||
| 8188 | 9년 전 | 249 | ||
| 8187 | 9년 전 | 269 | ||
| 8186 | 9년 전 | 265 | ||
| 8185 | 9년 전 | 433 | ||
| 8184 | 9년 전 | 219 | ||
| 8183 | 9년 전 | 425 | ||
| 8182 | 9년 전 | 297 | ||
| 8181 | 9년 전 | 249 | ||
| 8180 | 9년 전 | 825 | ||
| 8179 | 9년 전 | 604 | ||
| 8178 | 9년 전 | 459 | ||
| 8177 |
kiplayer
|
9년 전 | 455 | |
| 8176 | 9년 전 | 489 | ||
| 8175 | 9년 전 | 370 | ||
| 8174 | 9년 전 | 367 | ||
| 8173 | 9년 전 | 457 | ||
| 8172 | 9년 전 | 336 | ||
| 8171 | 9년 전 | 300 | ||
| 8170 | 9년 전 | 416 | ||
| 8169 |
커네드커네드
|
9년 전 | 369 | |
| 8168 | 9년 전 | 456 | ||
| 8167 | 9년 전 | 445 | ||
| 8166 | 9년 전 | 346 | ||
| 8165 | 9년 전 | 284 | ||
| 8164 | 9년 전 | 415 | ||
| 8163 | 9년 전 | 419 | ||
| 8162 | 9년 전 | 402 | ||
| 8161 | 9년 전 | 421 | ||
| 8160 |
|
9년 전 | 639 | |
| 8159 | 9년 전 | 583 | ||
| 8158 | 9년 전 | 377 | ||
| 8157 | 9년 전 | 500 | ||
| 8156 | 9년 전 | 373 | ||
| 8155 | 9년 전 | 387 | ||
| 8154 |
00년생용띠
|
9년 전 | 709 | |
| 8153 | 9년 전 | 349 | ||
| 8152 |
|
9년 전 | 524 | |
| 8151 | 9년 전 | 515 | ||
| 8150 | 9년 전 | 636 | ||
| 8149 |
Jangfolk
|
9년 전 | 494 | |
| 8148 | 9년 전 | 308 | ||
| 8147 | 9년 전 | 493 | ||
| 8146 | 9년 전 | 575 | ||
| 8145 | 9년 전 | 529 | ||
| 8144 | 9년 전 | 501 | ||
| 8143 | 9년 전 | 324 | ||
| 8142 | 9년 전 | 545 | ||
| 8141 | 9년 전 | 487 | ||
| 8140 | 9년 전 | 1060 | ||
| 8139 | 9년 전 | 394 | ||
| 8138 |
전갈자리남자
|
9년 전 | 503 | |
| 8137 | 9년 전 | 543 | ||
| 8136 | 9년 전 | 870 | ||
| 8135 |
|
9년 전 | 918 | |
| 8134 |
PlayPixel
|
9년 전 | 654 | |
| 8133 |
|
9년 전 | 560 | |
| 8132 | 9년 전 | 591 | ||
| 8131 | 9년 전 | 951 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기