html5表白网页代码
html<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>表白</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
text-align: center;
padding: 50px;
}
h1 {
color: #333;
}
#message {
width: 60%;
margin: 20px auto;
padding: 20px;
background-color: #fff;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
input[type="text"], textarea {
width: 80%;
padding: 10px;
margin: 10px 0;
border: 1px solid #ccc;
border-radius: 5px;
font-size: 16px;
}
input[type="submit"] {
padding: 10px 20px;
background-color: #ff4d4d;
border: none;
border-radius: 5px;
color: #fff;
font-size: 16px;
cursor: pointer;
transition: background-color 0.3s ease;
}
input[type="submit"]:hover {
background-color: #ff6666;
}
</style>
</head>
<body>
<h1>我对你说</h1>
<div id="message">
<form action="#">
<label for="name">你的名字:</label><br>
<input type="text" id="name" name="name" required><br>
<label for="message">我的表白:</label><br>
<textarea id="message" name="message" rows="4" required></textarea><br>
<input type="submit" value="提交">
</form>
</div>
</body>
</html>
这个页面包含一个简单的表白表单,用户可以在表单中输入自己的名字和表白的内容,然后提交。
接下来,你可以添加一些 JavaScript 代码来处理表单的提交,例如显示一个感谢信息或者将表白内容发送到你想要发送的地方。
这里是一个简单的例子,使用 JavaScript 来处理表单提交并显示感谢信息:
html<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>表白</title>
<style>
/* CSS 样式在这里 */
</style>
</head>
<body>
<h1>我对你说</h1>
<div id="message">
<form id="loveForm">
<label for="name">你的名字:</label><br>
<input type="text" id="name" name="name" required><br>
<label for="message">我的表白:</label><br>
<textarea id="loveMessage" name="message" rows="4" required></textarea><br>
<input type="submit" value="提交">
</form>
</div>
<div id="thankYou" style="display: none;">
<h2>谢谢你的表白!</h2>
</div>
<script>
// JavaScript 代码在这里
document.getElementById('loveForm').addEventListener('submit', function(event) {
event.preventDefault(); // 阻止表单默认提交行为
var name = document.getElementById('name').value;
var message = document.getElementById('loveMessage').value;
// 这里可以根据需要进行处理,比如发送邮件,存储到数据库等等
// 显示感谢信息
document.getElementById('message').style.display = 'none';
document.getElementById('thankYou').style.display = 'block';
});
</script>
</body>
</html>
这样,当用户提交表白表单时,页面会显示一个感谢信息,并且隐藏表单部分。