JS+DIV表单CSS鼠标移上背景变色和文字提示代码

2016-07-20 21:41:32 鼠标移上背景变色和文字提示代码JS+DIV表单CSS实例

JS+DIV表单CSS实例——鼠标移上背景变色和文字提示代码

一个表单设计实例,鼠标移上背景变色,同时出现文字提示。直接看演示吧!

  1. <!DOCTYPE html> 
  2. <html xmlns="http://www.w3.org/1999/xhtml"> 
  3. <head> 
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
  5. <title>JS+CSS实现的一种交互体验</title> 
  6. <style> 
  7. @charset "utf-8"; 
  8. /*元素初始化*/ 
  9. html {background: #FFF;} 
  10. body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,p,
    blockquote,th,td,ins,hr{margin: 0;padding: 0;} 
  11. p{cursor: text;} 
  12. h1,h2,h3,h4,h5,h6{font-size:100%;} 
  13. ol,ul{list-style-type: none;} 
  14. address,caption,cite,code,dfn,em,th,var{font-style:normal;font-weight:normal;} 
  15. table{border-collapse:collapse;} 
  16. fieldset,img{border:0;} 
  17. img{display:block;} 
  18. caption,th{text-align:left;} 
  19. body{position: relative;font-size:62.5%;font-family: "宋体"} 
  20. a{text-decoration: none;} 
  21. /*demo所用元素值*/ 
  22. #need {margin: 20px auto 0;width: 610px;} 
  23. #need li {height: 26px;width: 600px;font: 12px/26px Arial, Helvetica, sans-serif;background: #FFD;
    border-bottom: 1px dashed #E0E0E0;display: block;cursor: text;
    padding: 7px 0px 7px 10px!important;padding: 5px 0px 5px 10px;} 
  24. #need li:hover,#need li.hover {background: #FFE8E8;} 
  25. #need input {line-height: 14px;background: #FFF;height: 14px;width: 200px;
    border: 1px solid #E0E0E0;vertical-align: middle;padding: 6px;} 
  26. #need label {padding-left: 30px;} 
  27. #need label.old_password {background-position: 0 -277px;} 
  28. #need label.new_password {background-position: 0 -1576px;} 
  29. #need label.rePassword {background-position: 0 -1638px;} 
  30. #need label.email {background-position: 0 -429px;} 
  31. #need dfn {display: none;} 
  32. #need li:hover dfn, #need li.hover dfn {display:inline;margin-left: 7px;color: #676767;} 
  33. </style> 
  34. <script type="text/javascript"> 
  35. function suckerfish(type, tag, parentId) { 
  36. if (window.attachEvent) { 
  37. window.attachEvent("onload", function() { 
  38. var sfEls = (parentId==null)?document.getElementsByTagName(tag):document.getElementById(parentId).getElementsByTagName(tag); 
  39. type(sfEls); 
  40. }); 
  41. hover = function(sfEls) { 
  42. for (var i=0; i<sfEls.length; i++) { 
  43. sfEls[i].onmouseover=function() { 
  44. this.className+=" hover"; 
  45. sfEls[i].onmouseout=function() { 
  46. thisthis.className=this.className.replace(new RegExp(" hover\\b"), ""); 
  47. suckerfish(hover, "li"); 
  48. </script> 
  49. </head> 
  50. <body> 
  51. <ol id="need"> 
  52. <li>
    <label class="old_password">原始密码:</label> <input name='' type='password' id='' />
    </li> 
  53. <li>
    <label class="new_password">新的密码:</label> <input name='' type='password' id='' />
    <dfn>(密码长度为6~20字节。不想修改请留空)</dfn>
    </li> 
  54. <li>
    <label class="rePassword">重复密码:</label> <input name='' type='password' id='' />
    </li> 
  55. <li>
    <label class="email">邮箱设置:</label> <input name='' type='text' id='' />
    <dfn>(Codemoz! 承诺绝不会给您发送任何垃圾邮件。)</dfn>
    </li> 
  56. </ol> 
  57. </body> 
  58. </html> 

鼠标移上背景变色和文字提示代码如上。

更新