HOME>よくわかるHTML講座>小技集
1: <form method="get" action="#" onsubmit="return false" name="color"> 2: 赤:<input type="text" size="5" name="red" maxlength="3" value="255"><br /> 3: 緑:<input type="text" size="5" name="green" maxlength="3" value="255"><br /> 4: 青:<input type="text" size="5" name="blue" maxlength="3" value="255"><br /> 5: <input type="button" name="change" onclick="hex_change()" value="16進法に変換"> 6: カラーコード:<input type="text" size="8" name="hex" value="#ffffff"> 7: <input type="button" name="change2" onclick="bg_change()" value="背景色変更"> 8: <input type="button" name="c_reset" onclick="bg_reset()" value="背景色リセット"> 9: </form>
<html> <head> <style type="text/css"> <!-- ここにスタイルシートを記述する --> </style> </head> <body> ここに本文を記述する </body> </html>
<p style="ここにスタイルシートを記述する">
<style type="text/css"> <!-- p{color:red} /* <p>〜</p>で囲った部分の文字色を赤にする */ a{font-size:16px} /* <a>〜</a>で囲った部分の文字サイズを16ピクセルにする */ p.bigfont{font-size:200%} /* <p class="bigfont">〜</p>で囲った部分の文字サイズを倍にする */ .smallfont{font-size:70%} /* class="smallfont"と記述したタグの中身だけ文字サイズを小さくする */ .{background-color:black} /* 全てのタグの背景色を黒にする */ --> </style>
<style type="text/css"> <!-- a{color:slateblue;text-decoration:none} /* リンクタグのスタイル指定 */ a:hover{color:seagreen;text-decoration:underline} /* リンクタグにマウスが乗ったときのスタイル指定 */ /* 大見出し部分のスタイル指定 */ h1{ border: 2px solid red; padding:2px; background-color:pink } /* 中見出し部分のスタイル指定 */ h2{ border-left: 2px solid chocolate; border-bottom: 1px solid chocolate; padding:2px } /* 小見出し部分のスタイル指定 */ h3{ border-bottom: 2px dotted green; padding:2px } --> </style>
行の高さを指定しない。 行の高さを指定しない。 行の高さを指定しない。 行の高さを指定しない。 行の高さを指定しない。
行の高さを指定する。 行の高さを指定する。 行の高さを指定する。 行の高さを指定する。 行の高さを指定する。
<head> <script type="text/javascript"> <!-- function tekisei_calc(){ // フォームから値を得る sinchou=bmi.height_input.value; // 0 を減じることによって文字列を数値に変換 sinchou=sinchou-0; // 100 で割って cm を m に修正 sinchou=sinchou/100; // 身長の二乗に22をかけて適正体重を求める tekisei_taijuu=sinchou*sinchou*22; //10をかけて四捨五入し10で割ると小数点以下第一位を四捨五入したことになる tekisei_taijuu=Math.round(tekisei_taijuu*10)/10; // フォームに求めた値を表示させる bmi.weight_disp.value=tekisei_taijuu; } //--> </script> </head>
<form action="#" method="get" onsubmit="return false" name="bmi"> 身長<input type="text" name="height_input" size="7" maxlength="5">cm<br /> <input type="button" onclick="tekisei_calc()" value="あなたの適正体重は?"><br /> <input type="text" name="weight_disp" size="7">kg </form>