简单的机器人风格前端界面示例代码

ChatGPT4o 使用 ChatGPT 4o 回答

问题:

帮我写一个前端界面,内容是机器人风格的

回答:

当然可以!下面是一个简单的前端界面示例,采用机器人风格的设计。我们将使用HTML、CSS和一些简单的JavaScript来实现这个界面。

HTML (index.html)

<!DOCTYPE html>
<html lang="zh">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>机器人风格界面</title>
    <link rel="stylesheet" href="styles.css">
</head>
<body>
    <div class="container">
        <div class="robot">
            <div class="head">
                <div class="eyes"></div>
                <div class="mouth"></div>
            </div>
            <div class="body">
                <h1>欢迎来到机器人世界!</h1>
                <p>我是你的机器人助手,随时为你服务。</p>
                <button id="actionButton">点击我!</button>
            </div>
        </div>
    </div>
    <script src="script.js"></script>
</body>
</html>

CSS (styles.css)

body {
    background-color: #f0f0f0;
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    text-align: center;
}

.robot {
    background-color: #4a90e2;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    width: 300px;
}

.head {
    background-color: #fff;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    margin: 0 auto;
    position: relative;
}

.eyes {
    width: 40px;
    height: 20px;
    background-color: #000;
    border-radius: 10px;
    position: absolute;
    top: 30px;
    left: 30px;
}

.mouth {
    width: 50px;
    height: 10px;
    background-color: #000;
    border-radius: 5px;
    position: absolute;
    bottom: 20px;
    left: 25px;
}

.body {
    margin-top: 20px;
    color: #fff;
}

button {
    background-color: #ffcc00;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #ffbb00;
}

JavaScript (script.js)

document.getElementById('actionButton').addEventListener('click', function() {
    alert('你好,我是你的机器人助手!');
});

说明

  1. HTML: 创建了一个简单的结构,包括一个机器人形象和一个按钮。
  2. CSS: 设计了机器人的外观,使用了圆形和矩形来模拟机器人的头部和身体,并添加了一些样式来使其看起来更有趣。
  3. JavaScript: 为按钮添加了点击事件,当用户点击按钮时,会弹出一个提示框。

你可以将这些代码分别保存为 index.htmlstyles.cssscript.js 文件,然后在浏览器中打开 index.html 文件,就可以看到这个简单的机器人风格界面了!