帮忙生成一个H5,客户自行输入收款金额的收银台页面
时间: 2024-03-25 18:36:26 浏览: 145
好的,以下是一个简单的 H5 收银台页面,客户可以自行输入收款金额:
```
<!DOCTYPE html>
<html>
<head>
<title>收银台</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
font-family: Arial, sans-serif;
}
h1 {
text-align: center;
margin-top: 30px;
}
form {
max-width: 500px;
margin: 50px auto;
padding: 20px;
border: 1px solid #ccc;
border-radius: 5px;
box-shadow: 0 0 10px #ccc;
}
form label {
display: block;
margin-bottom: 10px;
font-size: 16px;
font-weight: bold;
}
form input[type="text"], form input[type="number"] {
display: block;
width: 100%;
padding: 10px;
margin-bottom: 20px;
border-radius: 5px;
border: 1px solid #ccc;
box-sizing: border-box;
font-size: 16px;
}
form input[type="submit"] {
display: block;
width: 100%;
padding: 10px;
border-radius: 5px;
border: none;
background-color: #f90;
color: #fff;
font-size: 16px;
cursor: pointer;
}
form input[type="submit"]:hover {
background-color: #ff0;
}
</style>
</head>
<body>
<h1>收银台</h1>
<form>
<label>收款金额:</label>
<input type="number" name="amount" placeholder="请输入收款金额" required>
<input type="submit" value="确认支付">
</form>
</body>
</html>
```
这个页面包含一个输入框和一个确认支付按钮,客户可以在输入框中输入收款金额,点击按钮后提交支付请求。您可以根据需要进行修改和优化。
阅读全文