질문이라 죄송합니다;;;;
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년 전
와우! ㅎㅎ
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 8030 | 9년 전 | 414 | ||
| 8029 | 9년 전 | 336 | ||
| 8028 | 9년 전 | 295 | ||
| 8027 | 9년 전 | 308 | ||
| 8026 | 9년 전 | 380 | ||
| 8025 | 9년 전 | 410 | ||
| 8024 | 9년 전 | 397 | ||
| 8023 | 9년 전 | 424 | ||
| 8022 | 9년 전 | 339 | ||
| 8021 | 9년 전 | 362 | ||
| 8020 | 9년 전 | 361 | ||
| 8019 | 9년 전 | 376 | ||
| 8018 | 9년 전 | 478 | ||
| 8017 | 9년 전 | 559 | ||
| 8016 | 9년 전 | 382 | ||
| 8015 | 9년 전 | 417 | ||
| 8014 | 9년 전 | 347 | ||
| 8013 | 9년 전 | 269 | ||
| 8012 | 9년 전 | 270 | ||
| 8011 | 9년 전 | 478 | ||
| 8010 | 9년 전 | 333 | ||
| 8009 | 9년 전 | 349 | ||
| 8008 | 9년 전 | 317 | ||
| 8007 | 9년 전 | 465 | ||
| 8006 | 9년 전 | 502 | ||
| 8005 |
|
9년 전 | 995 | |
| 8004 | 9년 전 | 385 | ||
| 8003 | 9년 전 | 454 | ||
| 8002 | 9년 전 | 348 | ||
| 8001 |
|
9년 전 | 692 | |
| 8000 | 9년 전 | 457 | ||
| 7999 | 9년 전 | 408 | ||
| 7998 | 9년 전 | 466 | ||
| 7997 | 9년 전 | 336 | ||
| 7996 | 9년 전 | 565 | ||
| 7995 | 9년 전 | 512 | ||
| 7994 | 9년 전 | 401 | ||
| 7993 | 9년 전 | 470 | ||
| 7992 | 9년 전 | 542 | ||
| 7991 | 9년 전 | 289 | ||
| 7990 | 9년 전 | 325 | ||
| 7989 | 9년 전 | 329 | ||
| 7988 | 9년 전 | 758 | ||
| 7987 | 9년 전 | 461 | ||
| 7986 | 9년 전 | 463 | ||
| 7985 | 9년 전 | 542 | ||
| 7984 | 9년 전 | 461 | ||
| 7983 | 9년 전 | 698 | ||
| 7982 | 9년 전 | 558 | ||
| 7981 | 9년 전 | 516 | ||
| 7980 | 9년 전 | 537 | ||
| 7979 | 9년 전 | 528 | ||
| 7978 | 9년 전 | 491 | ||
| 7977 | 9년 전 | 432 | ||
| 7976 | 9년 전 | 891 | ||
| 7975 | 9년 전 | 405 | ||
| 7974 | 9년 전 | 450 | ||
| 7973 | 9년 전 | 631 | ||
| 7972 | 9년 전 | 423 | ||
| 7971 | 9년 전 | 499 | ||
| 7970 | 9년 전 | 341 | ||
| 7969 | 9년 전 | 580 | ||
| 7968 | 9년 전 | 427 | ||
| 7967 | 9년 전 | 411 | ||
| 7966 | 9년 전 | 416 | ||
| 7965 |
|
9년 전 | 1045 | |
| 7964 | 9년 전 | 434 | ||
| 7963 | 9년 전 | 443 | ||
| 7962 | 9년 전 | 444 | ||
| 7961 |
전갈자리남자
|
9년 전 | 535 | |
| 7960 | 9년 전 | 1003 | ||
| 7959 | 9년 전 | 585 | ||
| 7958 | 9년 전 | 436 | ||
| 7957 | 9년 전 | 393 | ||
| 7956 | 9년 전 | 390 | ||
| 7955 | 9년 전 | 493 | ||
| 7954 | 9년 전 | 429 | ||
| 7953 | 9년 전 | 476 | ||
| 7952 | 9년 전 | 398 | ||
| 7951 | 9년 전 | 529 | ||
| 7950 | 9년 전 | 426 | ||
| 7949 | 9년 전 | 418 | ||
| 7948 | 9년 전 | 355 | ||
| 7947 | 9년 전 | 974 | ||
| 7946 | 9년 전 | 488 | ||
| 7945 | 9년 전 | 434 | ||
| 7944 | 9년 전 | 492 | ||
| 7943 | 9년 전 | 423 | ||
| 7942 | 9년 전 | 437 | ||
| 7941 | 9년 전 | 428 | ||
| 7940 | 9년 전 | 928 | ||
| 7939 | 9년 전 | 420 | ||
| 7938 | 9년 전 | 436 | ||
| 7937 | 9년 전 | 325 | ||
| 7936 | 9년 전 | 908 | ||
| 7935 | 9년 전 | 510 | ||
| 7934 | 9년 전 | 490 | ||
| 7933 | 9년 전 | 615 | ||
| 7932 | 9년 전 | 555 | ||
| 7931 | 9년 전 | 614 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기