ホームページ > 記事 > ウェブフロントエンド > ウェブサイト上のフォーム効果の良いコード例
今日は、入力ボックスの処理の詳細と経験について話しましょう。実際、CSS 標準、FF/IE7/IE6 などの主流ブラウザと完全に互換性があり、条件を満たす入力を行うことは難しくありません。ユーザーエクスペリエンス。まずクリックして、以下の効果を確認してください。
<!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>表单效果</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-color:#FFFFCC; } .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-color:#FFFFCC; } .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>请输入您的姓名</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>请输入您的Email</span> </li> <li> <label for="inp_web">网站:</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>请输入您的网站</span> </li> </ul> </body> </html>
また、タイトル(66149193c7e51d2a47dbc07047cddad0の役割)や入力ボックスをクリックすると、カーソルが止まっている入力部分の色が変わります。これも他の入力ボックスとは異なります。これが d5fd7aea971a85678ba271703566ebfd における JS の役割です。ユーザー エクスペリエンスは、何を入力できるか、および入力が現在どこにあるかをユーザーに伝えます。また、キーボードの Tab キーを切り替えることで、現在の内容を入力した後に次の入力ボックスに移動することがより便利になります。これが CSS の合理的なレイアウト構造の役割です。
全体的な構造は ff6d136ddc5fdfeffaf53ff6ee95f185 と 25edfb22a4f469ecb59f1190150159c6 で構成されており、各 25edfb22a4f469ecb59f1190150159c6 には 1 行のコンテンツが表示されます。
以上がウェブサイト上のフォーム効果の良いコード例の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。