ファイル名renshu.html
<!DOCTYPE html> <head> <title>練習</title> <link rel="stylesheet" href="./css/renshu.css"/> <script src="./js/renshu.js"><script> </head> <body> <fieldset class="BigBox1"> <fieldset class="Box1"> <input id="coloring1" type="text"> </fieldset> <fieldset class="Box2"> <input id="coloring2" type="text"> </fieldset> <fieldset class="Box3"> <input id="coloring3" type="text"> </fieldset> <button class="button">確定</button> <fieldset class="Box4"></body> </html></fieldset> </fieldset>
ファイル名renshu.css
.
fieldset{
vertical-align:middle
}
.BigBox1{
overflow:hidden
width:600px;
}
.Box1{
width:120px;
height:120px;
float:left
margin:10px 10px 10px 15px;
border-radius: 20px;
background-color: rgb(0,0,0);
}
.Box2{
width:120px;
height:120px;
float:left
margin:10px 10px 10px 15px;
border-radius: 20px;
background-color: rgb(0,0,0);
}
.Box3{
width:120px;
height:120px;
float:left
margin:10px 10px 10px 15px;
border-radius: 20px;
background-color: rgb(0,0,0);
}
.button{
width:80px;
height:30px;
float:left
margin:60px 60px 60px 60px;
border-radius: 5px;
background-color: gray;
}
.Box4{
width:120px;
height:120px;
float:left
margin:10px 10px 10px 15px;
border-radius: 20px;
background-color: rgb(0,0,0);
}
input{
width:26px;
margin-left:5px;
margin-right:5px;
vertical-align:-50px;
}
とこのような形でHTMLとCSSについては記述が完了しました。
左に3つの正方形を配置し、真ん中に確定ボタン、左に一つの正方形を配置します。
左のそれぞれ正方形に赤、緑、青の色の濃さを設定できるようにし、
真ん中の確定ボタンを押すことで
左の三つの色を混ぜ合わせた正方形を作るコードを作成したいです。
JSファイルはどのようなコードになると思いますか。
どなたか記述をよろしくお願いします。
回答1件
あなたの回答
tips
プレビュー