首页 > 其他分享 >【前端】六款高颜值注册界面

【前端】六款高颜值注册界面

时间:2024-11-05 12:08:30浏览次数:1  
标签:高颜值 界面 center color margin font background 六款 border

原创 吴旭东 无限大infinity

和昨天的一样,带来了六款注册界面,可复制源码(需要定制请加微信)

第一款–简约风格

HTML

<!DOCTYPE html>  
<html lang="zh">  
<head>  
    <meta charset="UTF-8">  
    <meta name="viewport" content="width=device-width, initial-scale=1.0">  
    <link rel="stylesheet" href="styles.css">  
    <title>注册界面</title>  
</head>  
<body>  
    <div class="registration-container">  
        <h1>创建账户</h1>  
        <form id="registrationForm" onsubmit="return handleRegister()">  
            <div class="input-group">  
                <label for="username">用户名</label>  
                <input type="text" id="username" placeholder="输入用户名" required>  
            </div>  
            <div class="input-group">  
                <label for="email">邮箱</label>  
                <input type="email" id="email" placeholder="输入邮箱" required>  
            </div>  
            <div class="input-group">  
                <label for="password">密码</label>  
                <input type="password" id="password" placeholder="输入密码" required>  
            </div>  
            <div class="input-group">  
                <label for="confirm-password">确认密码</label>  
                <input type="password" id="confirm-password" placeholder="确认密码" required>  
            </div>  
            <button type="submit">注册</button>  
        </form>  
        <div id="message"></div>  
        <div class="footer">  
            <p>已经有账户?<a href="#">登录</a></p>  
        </div>  
    </div>  
    <script src="script.js"></script>  
</body>  
</html>
 

CSS (styles.css)

body {  
    display: flex;  
    justify-content: center;  
    align-items: center;  
    height: 100vh;  
    background: linear-gradient(135deg, #f9f9f9, #ebeff2);  
    font-family: 'Arial', sans-serif;  
}  

.registration-container {  
    background: white;  
    padding: 30px;  
    border-radius: 10px;  
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);  
    max-width: 400px;  
    width: 100%;  
}  

h1 {  
    text-align: center;  
    color: #333;  
}  

.input-group {  
    margin-bottom: 20px;  
}  

label {  
    display: block;  
    margin-bottom: 5px;  
    font-weight: bold;  
    color: #555;  
}  

input {  
    width: 100%;  
    padding: 12px;  
    border: 1px solid #ccc;  
    border-radius: 5px;  
    transition: border-color 0.3s;  
    box-sizing: border-box; /* 确保padding不超出宽度 */  
}  

input:focus {  
    border-color: #007bff;  
    outline: none;  
}  

button {  
    width: 100%;  
    padding: 12px;  
    background-color: #007bff;  
    color: white;  
    border: none;  
    border-radius: 5px;  
    font-weight: bold;  
    cursor: pointer;  
    transition: background-color 0.3s;  
}  

button:hover {  
    background-color: #0056b3;  
}  

#message {  
    text-align: center;  
    margin-top: 15px;  
    color: red;  
}  

.footer {  
    text-align: center;  
    margin-top: 20px;  
}  

.footer a {  
    color: #007bff;  
    text-decoration: none;  
}  

.footer a:hover {  
    text-decoration: underline;  
}
Explain

JavaScript (script.js)

function handleRegister() {
    const username = document.getElementById('username').value;
    const email = document.getElementById('email').value;
    const password = document.getElementById('password').value;
    const confirmPassword = document.getElementById('confirm-password').value;
    const messageElement = document.getElementById('message');

    // 简单的验证
    if (password !== confirmPassword) {
        messageElement.textContent = '密码和确认密码不匹配!';
        messageElement.style.color = 'red';
        return false;
    }

    // 在这里可以进行进一步的处理,例如发送数据到服务器
    messageElement.textContent = '注册成功!';
    messageElement.style.color = 'green';

    // 阻止表单的默认提交行为
    return false;
}

第二款–商务风格

HTML

<!DOCTYPE html>
<html lang="zh">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="stylesheet" href="styles.css">
    <title>注册界面</title>
</head>
<body>
    <div class="registration-container">
        <h1>创建账户</h1>
        <p class="subtitle">加入我们,开始您的旅程</p>
        <form id="registrationForm" onsubmit="return handleRegister()">
            <div class="input-group">
                <label for="username">用户名</label>
                <input type="text" id="username" placeholder="输入用户名" required>
            </div>
            <div class="input-group">
                <label for="email">邮箱</label>
                <input type="email" id="email" placeholder="输入邮箱" required>
            </div>
            <div class="input-group">
                <label for="password">密码</label>
                <input type="password" id="password" placeholder="输入密码" required>
            </div>
            <div class="input-group">
                <label for="confirm-password">确认密码</label>
                <input type="password" id="confirm-password" placeholder="确认密码" required>
            </div>
            <button type="submit">注册</button>
        </form>
        <div id="message"></div>
        <div class="footer">
            <p>已经有账户?<a href="#">登录</a></p>
        </div>
    </div>
    <script src="script.js"></script>
</body>
</html>

CSS (styles.css)

body {  
    display: flex;  
    justify-content: center;  
    align-items: center;  
    height: 100vh;  
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);  
    font-family: 'Arial', sans-serif;  
}  

.registration-container {  
    background: white;  
    padding: 40px;  
    border-radius: 15px;  
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);  
    max-width: 450px;  
    width: 100%;  
    text-align: center;   
}  

h1 {  
    margin-bottom: 10px;  
    color: #1e88e5;  
}  

.subtitle {  
    margin-bottom: 20px;  
    color: #555;  
    font-size: 14px;  
}  

.input-group {  
    margin-bottom: 20px;  
    text-align: left;   
}  

label {  
    display: block;  
    margin-bottom: 5px;  
    font-weight: bold;  
    color: #333;  
}  

input {  
    width: 100%;  
    padding: 12px;  
    border: 1px solid #ccc;  
    border-radius: 5px;  
    transition: border-color 0.3s;  
    font-size: 14px;   
    box-sizing: border-box; /* 确保padding不超出宽度 */  

}  

input:focus {  
    border-color: #1e88e5;  
    outline: none;  
    box-shadow: 0 0 5px rgba(30, 136, 229, 0.5);  
}  

button {  
    width: 100%;  
    padding: 12px;  
    background-color: #1e88e5;  
    color: white;  
    border: none;  
    border-radius: 5px;  
    font-weight: bold;  
    cursor: pointer;  
    transition: background-color 0.3s;  
    font-size: 16px;   
}  

button:hover {  
    background-color: #1976d2;  
}  

#message {  
    text-align: center;  
    margin-top: 15px;  
    color: red;  
}  

.footer {  
    text-align: center;  
    margin-top: 20px;  
}  

.footer a {  
    color: #1e88e5;  
    text-decoration: none;  
}  

.footer a:hover {  
    text-decoration: underline;  
}

JavaScript (script.js)

function handleRegister() {
    const username = document.getElementById('username').value;
    const email = document.getElementById('email').value;
    const password = document.getElementById('password').value;
    const confirmPassword = document.getElementById('confirm-password').value;
    const messageElement = document.getElementById('message');

    // 简单的验证
    if (password !== confirmPassword) {
        messageElement.textContent = '密码和确认密码不匹配!';
        messageElement.style.color = 'red';
        return false;
    }

    // 进行进一步处理,例如发送数据到服务器
    messageElement.textContent = '注册成功!';
    messageElement.style.color = 'green';

    // 阻止表单的默认提交行为
    return false;
}

第三款–中国水墨丹青风格


HTML

<!DOCTYPE html>
<html lang="zh">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="stylesheet" href="styles.css">
    <title>注册界面</title>
</head>
<body>
    <div class="registration-container">
        <h1>创建账户</h1>
        <p class="subtitle">与万物共生,踏上新的旅程</p>
        <form id="registrationForm" onsubmit="return handleRegister()">
            <div class="input-group">
                <label for="username">用户名</label>
                <input type="text" id="username" placeholder="输入用户名" required>
            </div>
            <div class="input-group">
                <label for="email">邮箱</label>
                <input type="email" id="email" placeholder="输入邮箱" required>
            </div>
            <div class="input-group">
                <label for="password">密码</label>
                <input type="password" id="password" placeholder="输入密码" required>
            </div>
            <div class="input-group">
                <label for="confirm-password">确认密码</label>
                <input type="password" id="confirm-password" placeholder="确认密码" required>
            </div>
            <button type="submit">注册</button>
        </form>
        <div id="message"></div>
        <div class="footer">
            <p>已经有账户?<a href="#">登录</a></p>
        </div>
    </div>
    <script src="script.js"></script>
</body>
</html>

CSS (styles.css)

body {  
    display: flex;  
    justify-content: center;  
    align-items: center;  
    height: 100vh;  
    background: url('../../loginBig/login3/img/2.png') no-repeat center center fixed; 
    background-size: cover;  
    font-family: 'SimSun', serif;  
    color: #333; 
}  

.registration-container {  
    background: rgba(255, 255, 255, 0.8);  
    padding: 40px;  
    border-radius: 15px;  
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.2);  
    max-width: 450px;  
    width: 100%;  
    text-align: center;   
}  

h1 {  
    margin-bottom: 10px;  
    color: #000;  
    font-size: 24px;  
}  

.subtitle {  
    margin-bottom: 20px;  
    color: #555;  
    font-size: 14px;  
}  

.input-group {  
    margin-bottom: 20px;  
    text-align: left;   
}  

label {  
    display: block;  
    margin-bottom: 5px;  
    font-weight: bold;  
    color: #333;  
}  

input {  
    width: 100%;  
    padding: 12px;  
    border: 1px solid #ccc;  
    border-radius: 5px;  
    transition: border-color 0.3s;  
    font-size: 14px;   
    box-sizing: border-box;  
}  

input:focus {  
    border-color: #d192d3;  
    outline: none;  
}  

button {  
    width: 100%;  
    padding: 12px;  
    background-color: #b872d2c5;  
    color: white;  
    border: none;  
    border-radius: 5px;  
    font-weight: bold;  
    cursor: pointer;  
    transition: background-color 0.3s;  
    font-size: 16px;   
}  

button:hover {  
    background-color: #6d4a64;  
}  

#message {  
    text-align: center;  
    margin-top: 15px;  
    color: red;  
}  

.footer {  
    text-align: center;  
    margin-top: 20px;  
}  

.footer a {  
    color: #cd58cd;  
    text-decoration: none;  
}  

.footer a:hover {  
    text-decoration: underline;  
}

JavaScript (script.js)

function handleRegister() {
    const username = document.getElementById('username').value;
    const email = document.getElementById('email').value;
    const password = document.getElementById('password').value;
    const confirmPassword = document.getElementById('confirm-password').value;
    const messageElement = document.getElementById('message');

    // 简单的验证
    if (password !== confirmPassword) {
        messageElement.textContent = '密码和确认密码不匹配!';
        messageElement.style.color = 'red';
        return false;
    }

    // 进行进一步处理,例如发送数据到服务器
    messageElement.textContent = '注册成功!';
    messageElement.style.color = 'green';

    // 阻止表单的默认提交行为
    return false;
}

第四款–中国风

HTML

<!DOCTYPE html>
<html lang="zh">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="stylesheet" href="styles.css">
    <title>注册界面</title>
</head>
<body>
    <div class="registration-container">
        <h1>创建账户</h1>
        <form id="registrationForm" onsubmit="return handleRegister()">
            <div class="input-group">
                <label for="username">用户名</label>
                <input type="text" id="username" placeholder="输入用户名" required>
            </div>
            <div class="input-group">
                <label for="email">邮箱</label>
                <input type="email" id="email" placeholder="输入邮箱" required>
            </div>
            <div class="input-group">
                <label for="password">密码</label>
                <input type="password" id="password" placeholder="输入密码" required>
            </div>
            <div class="input-group">
                <label for="confirm-password">确认密码</label>
                <input type="password" id="confirm-password" placeholder="确认密码" required>
            </div>
            <button type="submit">注册</button>
        </form>
        <div id="message"></div>
        <div class="footer">
            <p>已经有账户?<a href="#">登录</a></p>
        </div>
    </div>
    <script src="script.js"></script>
</body>
</html>
 

CSS (styles.css)

body {  
    display: flex;  
    justify-content: center;  
    align-items: center;  
    height: 100vh;  
    background: url('../../loginBig/login2/img/2.png') no-repeat center center fixed; 
    background-size: cover;   
    font-family: 'SimSun', serif;
    color: #333; 
}  

.registration-container {  
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #8B4513; 
    padding: 40px;  
    border-radius: 15px;  
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.2);  
    max-width: 450px;  
    width: 100%;  
    text-align: center;   
}  

h1 {  
    margin-bottom: 10px;  
    color: #8B4513;  
    font-size: 28px;  
}  

.subtitle {  
    margin-bottom: 20px;  
    color: #5B3A29;
    font-size: 14px;  
}  

.input-group {  
    margin-bottom: 20px;  
    text-align: left;   
}  

label {  
    display: block;  
    margin-bottom: 5px;  
    font-weight: bold;  
    color: #333;  
}  

input {  
    width: 100%;  
    padding: 12px;  
    border: 1px solid #ccc;  
    border-radius: 5px;  
    transition: border-color 0.3s;  
    font-size: 14px;   
    box-sizing: border-box; 
}  

input:focus {  
    border-color: #8B4513;  
    outline: none;  
}  

button {  
    width: 100%;  
    padding: 12px;  
    background-color: #8B4513; 
    color: white;  
    border: none;  
    border-radius: 5px;  
    font-weight: bold;  
    cursor: pointer;  
    transition: background-color 0.3s;  
    font-size: 16px;   
}  

button:hover {  
    background-color: #6F3C2A; 
}  

#message {  
    text-align: center;  
    margin-top: 15px;  
    color: red;  
}  

.footer {  
    text-align: center;  
    margin-top: 20px;  
}  

.footer a {  
    color: #8B4513; 
    text-decoration: none;  
}  

.footer a:hover {  
    text-decoration: underline;  
}

JavaScript (script.js)

function handleRegister() {
    const username = document.getElementById('username').value;
    const email = document.getElementById('email').value;
    const password = document.getElementById('password').value;
    const confirmPassword = document.getElementById('confirm-password').value;
    const messageElement = document.getElementById('message');

    // 简单的验证
    if (password !== confirmPassword) {
        messageElement.textContent = '密码和确认密码不匹配!';
        messageElement.style.color = 'red';
        return false;
    }

    // 在这里可以进行进一步的处理,例如发送数据到服务器
    messageElement.textContent = '注册成功!';
    messageElement.style.color = 'green';

    // 阻止表单的默认提交行为
    return false;
}

第五款–赛博朋克风格


HTML:

<!DOCTYPE html>
<html lang="zh">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="stylesheet" href="styles.css">
    <title>赛博朋克注册界面</title>
</head>
<body>
    <div class="background"></div>
    <div class="registration-container">
        <h1>欢迎来到赛博世界</h1>
        <p class="subtitle">加入我们,解锁新未来</p>
        <form id="registrationForm" onsubmit="return handleRegister()">
            <div class="input-group">
                <label for="username">用户名</label>
                <input type="text" id="username" placeholder="输入用户名" required>
            </div>
            <div class="input-group">
                <label for="email">邮箱</label>
                <input type="email" id="email" placeholder="输入邮箱" required>
            </div>
            <div class="input-group">
                <label for="password">密码</label>
                <input type="password" id="password" placeholder="输入密码" required>
            </div>
            <div class="input-group">
                <label for="confirm-password">确认密码</label>
                <input type="password" id="confirm-password" placeholder="确认密码" required>
            </div>
            <button type="submit">注册</button>
        </form>
        <div id="message"></div>
        <div class="footer">
            <p>已经有账户?<a href="#">登录</a></p>
        </div>
    </div>
    <script src="script.js"></script>
</body>
</html>

CSS (styles.css):

body {  
    margin: 0;  
    font-family: 'Arial', sans-serif;  
    background: black;  
    color: #ffffff;  
    overflow: hidden;   
}  

.background {  
    position: absolute;  
    top: 0;  
    left: 0;  
    width: 100%;  
    height: 100%;  
    background: url('../../loginBig/login4/img/2.png') no-repeat center center fixed; 
    background-size: cover;  
    filter: blur(5px);  
}  

.registration-container {  
    position: relative;  
    z-index: 1;  
    background: rgba(0, 0, 0, 0.7);  
    padding: 40px;  
    border-radius: 15px;  
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);  
    backdrop-filter: blur(8px);  
    max-width: 450px;  
    margin: auto;  
    text-align: center;   
}  

h1 {  
    margin-bottom: 10px;  
    color: #0ff;
    font-size: 28px;  
}  

.subtitle {  
    margin-bottom: 20px;  
    color: #ff79c6; 
    font-size: 14px;  
}  

.input-group {  
    margin-bottom: 20px;  
    text-align: left;   
}  

label {  
    display: block;  
    margin-bottom: 5px;  
    font-weight: bold;  
    color: #ffffff;  
}  

input {  
    width: 100%;  
    padding: 12px;  
    border: 2px solid #0ff; 
    border-radius: 5px;  
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;  
    transition: border-color 0.3s;  
    box-sizing: border-box; 

}  

input:focus {  
    border-color: #ff79c6;
    outline: none;  
}  

button {  
    width: 100%;  
    padding: 12px;  
    background-color: #ff79c6; 
    color: white;  
    border: none;  
    border-radius: 5px;  
    font-weight: bold;  
    cursor: pointer;  
    transition: background-color 0.3s;  
    font-size: 16px;   
}  

button:hover {  
    background-color: #0ff; 
}  

#message {  
    text-align: center;  
    margin-top: 15px;  
    color: red;  
}  

.footer {  
    text-align: center;  
    margin-top: 20px;  
}  

.footer a {  
    color: #0ff; 
    text-decoration: none;  
}  

.footer a:hover {  
    text-decoration: underline;  
}

JavaScript (script.js):


function handleRegister() {
    const username = document.getElementById('username').value;
    const email = document.getElementById('email').value;
    const password = document.getElementById('password').value;
    const confirmPassword = document.getElementById('confirm-password').value;
    const messageElement = document.getElementById('message');

    // 简单的验证
    if (password !== confirmPassword) {
        messageElement.textContent = '密码和确认密码不匹配!';
        messageElement.style.color = 'red';
        return false;
    }

    // 进行进一步处理,例如发送数据到服务器
    messageElement.textContent = '注册成功!';
    messageElement.style.color = 'green';

    // 阻止表单的默认提交行为
    return false;
}

第六款–像素风格

HTML:

<!DOCTYPE html>
<html lang="zh">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="stylesheet" href="styles.css">
    <title>像素风格注册界面</title>
</head>
<body>
    <div class="registration-container">
        <h1>像素世界</h1>
        <p class="subtitle">加入我们,开始新的冒险</p>
        <form id="registrationForm" onsubmit="return handleRegister()">
            <div class="input-group">
                <label for="username">用户名</label>
                <input type="text" id="username" placeholder="输入用户名" required>
            </div>
            <div class="input-group">
                <label for="email">邮箱</label>
                <input type="email" id="email" placeholder="输入邮箱" required>
            </div>
            <div class="input-group">
                <label for="password">密码</label>
                <input type="password" id="password" placeholder="输入密码" required>
            </div>
            <div class="input-group">
                <label for="confirm-password">确认密码</label>
                <input type="password" id="confirm-password" placeholder="确认密码" required>
            </div>
            <button type="submit">注册</button>
        </form>
        <div id="message"></div>
        <div class="footer">
            <p>已经有账户?<a href="#">登录</a></p>
        </div>
    </div>
    <script src="script.js"></script>
</body>
</html>

CSS (styles.css):

body {  
    display: flex;  
    justify-content: center;  
    align-items: center;  
    height: 100vh;  
    background: radial-gradient(ellipse at bottom, #20ba84 0%, #e0e6df 100%) fixed;    
    font-family: 'Press Start 2P', cursive;
}  

.registration-container {  
    background: #ffffff; /* 白色背景 */ 
    background: url('../../loginBig/login5/img/2.png') no-repeat center center fixed;
    padding: 20px;  
    border: 5px solid #333; /* 深色边框 */  
    border-radius: 10px;  
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);  
    max-width: 400px;  
    width: 100%;  
    text-align: center;   
}  

h1 {  
    margin-bottom: 10px;  
    color: #333; /* 字体颜色 */  
    font-size: 24px;  
}  

.subtitle {  
    margin-bottom: 20px;  
    color: #555; /* 字体颜色 */  
    font-size: 14px;  
}  

.input-group {  
    margin-bottom: 20px;  
    text-align: left;   
}  

label {  
    display: block;  
    margin-bottom: 5px;  
    font-weight: bold;  
    color: #333;  
}  

input {  
    width: 100%;  
    padding: 10px;  
    border: 3px solid #666; 
    border-radius: 5px;  
    background: #fafafa; 
    color: #333; 
    font-size: 14px;  
    box-sizing: border-box;
    transition: border-color 0.3s;  
}  

input:focus {  
    border-color: #459e54; 
    outline: none;  
}  

button {  
    width: 100%;  
    padding: 10px;  
    background-color: #528e64; 
    color: rgb(0, 0, 0); 
    border: none;  
    border-radius: 5px;  
    font-weight: bold;  
    cursor: pointer;  
    transition: background-color 0.3s;  
    font-size: 16px;   
}  

button:hover {  
    background-color: #49b190; 
}  

#message {  
    text-align: center;  
    margin-top: 15px;  
    color: red;  
}  

.footer {  
    text-align: center;  
    margin-top: 20px;  
}  

.footer a {  
    color: #000000; 
    text-decoration: none;  
}  

.footer a:hover {  
    text-decoration: underline;  
}

JavaScript (script.js):

function handleRegister() {
    const username = document.getElementById('username').value;
    const email = document.getElementById('email').value;
    const password = document.getElementById('password').value;
    const confirmPassword = document.getElementById('confirm-password').value;
    const messageElement = document.getElementById('message');

    // 简单的验证
    if (password !== confirmPassword) {
        messageElement.textContent = '密码和确认密码不匹配!';
        messageElement.style.color = 'red';
        return false;
    }

    // 进行进一步处理,例如发送数据到服务器
    messageElement.textContent = '注册成功!';
    messageElement.style.color = 'green';

    // 阻止表单的默认提交行为
    return false;
}

标签:高颜值,界面,center,color,margin,font,background,六款,border
From: https://www.cnblogs.com/o-O-oO/p/18527550

相关文章

  • PbootCMS网站后台管理系统登录界面描述/LOGO/背景图/介绍修改
    1.修改登录界面描述位置:登录页面通常会有一个简短的系统或公司介绍。修改方法:找到登录页面的模板文件,通常位于 /template/admin/login.html。在该文件中找到描述文本的部分,通常是 <p> 标签内的内容。直接修改该段落的内容即可。2.修改LOGO位置:LOGO通常显......
  • 第二节:SQLServer图形化界面配置账号权限
    一.步骤详解1. 右键,新建登录名2.输入新建的用户名和密码,然后把下面的密码策略都取消掉。3设置服务器角色,只勾选public,其他的都不要选(选了以后,所有数据库都能访问了,后续的设置就无效了)4设置用户映射,即该用户可以管理哪些DB,这里勾选需要的DB,然后选上dbowner权限,表示......
  • 鸿蒙 UIAbility 组件:构建用户界面的舞台
    ......
  • 充电小程序的各种界面,真的是创意拉满呀。
    充电小程序的各种界面确实创意十足。简洁明了的首页,以醒目的图标和清晰的文字引导用户快速找到充电设施。地图界面犹如一张充满科技感的导航图,精准标注着各个充电桩的位置,让用户一目了然。充电过程的界面设计更是充满巧思,动态显示充电进度和剩余时间,让用户随时掌握充电状态。同......
  • 强噪声下基于mscnn-bigru-attention深度学习模型CWRU(凯斯西储大学)轴承故障诊断(Pytho
     1.效果视频(以0HP数据集为例,在-30DB下的测试准确率效果)强噪声下基于mscnn-bigru-attention深度学习模型CWRU(凯斯西储大学)轴承故障诊断_哔哩哔哩_bilibili对原始信号分别添加不同强度的高斯白噪声,以模拟实验数据遇到的实际环境中干扰噪声。原始信号(以0HP数据为例进行展示,可......
  • 带界面下的基于mscnn-bigru-attention深度学习模型江南大学轴承故障诊断(Python代码,很
     1。效果视频:基于mscnn-bigru-attention深度学习模型江南大学轴承故障诊断带界面_哔哩哔哩_bilibili 2.江南大学轴承数据集介绍采样频率:50khz,采样时间:10s转速:6008001000/rpm内圈故障:ib外圈故障:ob滚动体故障:tb正常:N 以600转速下的内圈故障数据为例展示:开始数据......
  • 桌面软件界面能给用户带来完美体验的,还得是QT的设计
    QT的界面设计具有高度的灵活性和可定制性。开发者可以利用QT的丰富工具和库,轻松创建出符合不同用户需求和审美标准的界面。无论是简洁现代的风格,还是复杂华丽的布局,QT都能胜任。其跨平台特性也是一大亮点。无论用户使用的是Windows、Mac还是Linux系统,QT设计的软件界......
  • 09-鸿蒙开发中的界面开发:布局思路入门
     大家好,欢迎来到鸿蒙开发系列教程!今天,我们将深入探讨界面开发中的布局思路。布局是用户界面设计的核心,合理的布局不仅可以提升用户体验,还能使代码更加整洁和易于维护。无论你是初学者还是有一定经验的开发者,理解布局的思路都是非常有帮助的。让我们开始吧!1.什么是界面布局?......
  • 鸿蒙Next应用本地化:界面镜像伪本地化测试
    本文旨在深入探讨华为鸿蒙HarmonyOSNext系统(截止目前API12)在应用本地化中界面镜像伪本地化测试方面的技术细节,基于实际开发实践进行总结。主要作为技术分享与交流载体,难免错漏,欢迎各位同仁提出宝贵意见和问题,以便共同进步。本文为原创内容,任何形式的转载必须注明出处及原作者。......
  • 【免费源码】基于YOLOv10的植物病害实时检测系统【yolo植物病害数据集+ui界面+模型】
      所有YOLOv10源码免费获取(私信留下联系方式,项目名+邮箱)唯一要求  一键四连:点赞+收藏+评论+免费订阅系统展示:免费项目包含:确保项目可以运行(图片识别、视频识别、摄像头实时识别和结果保存)。训练好的pt模型文件完整的ui界面完整代码环境配置教程训练结果分析图软件......