🌹整体展示
🌹步骤分解
🔥用HTML创建整体布局
🔥用CSS美化页面
🔥用JavaScript实现提交
源代码如上,预览效果如整体展示
🌹完整代码
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<div class="container">
<h1 class="title">表白墙</h1>
<p>输入后点击提交, 会将信息显示在表格中</p>
<div class="row">
<span>谁: </span>
<input class="edit" type="text">
</div>
<div class="row">
<span>对谁: </span>
<input class="edit" type="text">
</div>
<div class="row">
<span>说什么: </span>
<input class="edit" type="text">
</div>
<div class="row">
<input type="button" value="提 交" class="submit">
</div>
</div>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.title{
color:red;
font-family:KaiTi;
}
.container {
width: 400px;
margin: 0 auto;
padding-top: 50px;
}
h1 {
text-align: center;
padding-top: 50px;
}
p {
color:black;
text-align: center;
font-size: 14px;
padding: 10px 0;
}
.row {
height: 40px;
display: flex;
justify-content: center;
align-items: center;
font-family: KaiTi;
font-weight: 700;
}
span {
width: 100px;
line-height: 40px;
}
.edit {
width: 200px;
height: 30px;
padding-left: 5px;
}
.submit {
width: 304px;
height: 40px;
color: white;
background-color: orange;
border: none;
border-radius: 15px;
}
.submit:active{
background-color:rgb(181, 184, 38);
}
html, body {
height: 100%;
background-image: url("image/表白墙壁纸.png");
background-position: center center;
background-size:cover;
background-repeat: no-repeat; }
</style>
<script>
let submit = document.querySelector('.submit');
submit.onclick = function () {
let edits = document.querySelectorAll('.edit');
let from = edits[0].value;
let to = edits[1].value;
let message = edits[2].value;
console.log(from + "," + to + "," + message);
if (from == '' || to == '' || message == '') {
return;
}
let row = document.createElement('div');
row.className = 'row';
row.innerHTML = from + '对' + to + '说: ' + message;
let container = document.querySelector('.container');
container.appendChild(row);
for (let i = 0; i < 3; i++) {
edits[i].value = '';
}
}
</script>
</body>
</html>
注意,以上所有样式大家都可以自行调整哦,相信大家会设计出比博主更好的页面效果!