暗色模式html在线聊天界面模板
时间: 2023-09-11 18:04:03 浏览: 122
以下是一个简单的暗色模式的HTML在线聊天界面模板,你可以根据自己的需求进行修改和定制。
```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dark Mode Chat Template</title>
<style>
body {
background-color: #1c1c1c;
color: #fff;
font-family: Arial, sans-serif;
font-size: 16px;
line-height: 1.5;
}
.chat-container {
max-width: 600px;
margin: 0 auto;
padding: 20px;
}
.chat-message {
display: flex;
align-items: center;
margin-bottom: 20px;
}
.chat-message img {
width: 50px;
height: 50px;
border-radius: 50%;
margin-right: 10px;
}
.chat-message .message-bubble {
background-color: #333;
padding: 10px;
border-radius: 10px;
}
.chat-message .message-bubble p {
margin: 0;
}
.chat-message .message-bubble .timestamp {
font-size: 12px;
color: #ccc;
margin-top: 5px;
text-align: right;
}
</style>
</head>
<body>
<div class="chat-container">
<div class="chat-message">
<img src="https://via.placeholder.com/50" alt="User Avatar">
<div class="message-bubble">
<p>Hello, how can I help you?</p>
<div class="timestamp">12:00 PM</div>
</div>
</div>
<div class="chat-message">
<div class="message-bubble">
<p>Hi, I'm having trouble with my account.</p>
<div class="timestamp">12:05 PM</div>
</div>
<img src="https://via.placeholder.com/50" alt="User Avatar">
</div>
<div class="chat-message">
<img src="https://via.placeholder.com/50" alt="User Avatar">
<div class="message-bubble">
<p>What seems to be the problem?</p>
<div class="timestamp">12:10 PM</div>
</div>
</div>
</div>
</body>
</html>
```
在这个模板中,我们使用了以下样式设置:
- `background-color`和`color`属性分别设置了页面的背景色和字体颜色。
- `.chat-container`类设置了聊天容器的最大宽度和内边距。
- `.chat-message`类设置了聊天消息的布局和外边距。
- `.chat-message img`类设置了用户头像的大小、圆角和右边距。
- `.chat-message .message-bubble`类设置了聊天消息气泡的背景色、内边距和圆角。
- `.chat-message .message-bubble p`类设置了聊天消息的文本样式和外边距。
- `.chat-message .message-bubble .timestamp`类设置了聊天消息时间戳的字体大小、颜色、上边距和对齐方式。
你可以根据自己的需求进行修改和添加样式。
阅读全文