写一个豪华的前端登录页面
时间: 2023-03-07 13:17:15 浏览: 97
登录页面可以以时尚、简洁和高效的方式进行设计,以满足用户的需求。可以使用响应式设计,以便在不同的设备上都能正常工作,并且可以添加一些动画效果,以提升用户体验。另外,可以添加一些安全性的功能,比如验证码,以保证用户账号的安全。
相关问题
web前端写一个酒店页面设计,包括javaScript
好的,我可以给你提供一个简单的酒店页面设计,包括 JavaScript 实现一些交互效果。
HTML 代码如下:
```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>酒店页面</title>
<style>
/* 页面样式 */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
header {
background-color: #333;
color: #fff;
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px;
}
h1 {
margin: 0;
}
nav {
display: flex;
}
nav a {
color: #fff;
text-decoration: none;
margin-left: 20px;
}
section {
width: 80%;
margin: 0 auto;
}
.hotel-info {
display: flex;
align-items: center;
margin-bottom: 50px;
}
.hotel-info img {
width: 300px;
height: 200px;
margin-right: 30px;
}
.hotel-info h2 {
margin: 0;
font-size: 36px;
}
.hotel-info p {
font-size: 16px;
line-height: 1.6;
}
.room {
margin-bottom: 50px;
}
.room h3 {
margin: 0;
font-size: 24px;
margin-bottom: 15px;
}
.room p {
font-size: 16px;
line-height: 1.6;
}
.room button {
background-color: #333;
color: #fff;
border: none;
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
}
.room button:hover {
background-color: #fff;
color: #333;
}
</style>
</head>
<body>
<header>
<h1>酒店名称</h1>
<nav>
<a href="#">首页</a>
<a href="#">客房预订</a>
<a href="#">关于我们</a>
<a href="#">联系我们</a>
</nav>
</header>
<section>
<div class="hotel-info">
<img src="https://via.placeholder.com/300x200" alt="酒店图片">
<div>
<h2>酒店名称</h2>
<p>位于某某地区,提供舒适的住宿和各种设施。</p>
<p>电话:123-456-7890</p>
</div>
</div>
<div class="room">
<h3>豪华房间</h3>
<p>我们的豪华房间提供宽敞的空间和舒适的床铺,让您度过一个愉快的假期。</p>
<button>预订</button>
</div>
<div class="room">
<h3>高级房间</h3>
<p>我们的高级房间提供所有必要的设施,包括电视、空调和免费 WiFi。</p>
<button>预订</button>
</div>
</section>
<script>
// JavaScript 代码
const buttons = document.querySelectorAll('button');
buttons.forEach(button => {
button.addEventListener('click', () => {
alert('预订成功!');
});
});
</script>
</body>
</html>
```
这是一个简单的酒店页面,包含一个 header、一个酒店信息的部分、和两个客房信息的部分。我们使用了 flex 布局来对齐元素,并使用了 CSS 样式来设计页面的外观。
在 JavaScript 部分,我们使用了 `document.querySelectorAll` 来获取所有的按钮,然后使用 `forEach` 循环为每个按钮添加了一个点击事件。当用户点击按钮时,弹出一个提示框,提示预订成功。
这只是一个示例,你可以根据自己的需求进行修改和扩展。
写有关宾馆的前端设计代码
好的,以下是一个简单的宾馆前端设计代码示例:
HTML代码:
```html
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>宾馆首页</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="#">主页</a></li>
<li><a href="#">酒店介绍</a></li>
<li><a href="#">房型展示</a></li>
<li><a href="#">在线预订</a></li>
<li><a href="#">联系我们</a></li>
</ul>
</nav>
</header>
<main>
<section id="banner">
<h1>欢迎来到XXX宾馆</h1>
<button>在线预订</button>
</section>
<section id="introduction">
<h2>酒店介绍</h2>
<p>XXX宾馆位于市中心,交通便利,环境优美,是您商务和旅游的理想选择。</p>
<img src="hotel.jpg" alt="宾馆外观">
</section>
<section id="rooms">
<h2>房型展示</h2>
<ul>
<li>
<img src="room1.jpg" alt="豪华大床房">
<h3>豪华大床房</h3>
<p>房间面积:30平方米</p>
<p>床型:1.8米大床</p>
<p>价格:888元/晚</p>
</li>
<li>
<img src="room2.jpg" alt="双人标准间">
<h3>双人标准间</h3>
<p>房间面积:25平方米</p>
<p>床型:1.5米双人床</p>
<p>价格:588元/晚</p>
</li>
<li>
<img src="room3.jpg" alt="商务套房">
<h3>商务套房</h3>
<p>房间面积:50平方米</p>
<p>床型:1.8米大床</p>
<p>价格:1288元/晚</p>
</li>
</ul>
</section>
</main>
<footer>
<p>版权所有 © XXX宾馆</p>
</footer>
</body>
</html>
```
CSS代码:
```css
/* 全局样式 */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
/* 导航栏样式 */
header {
background-color: #333;
color: #fff;
padding: 10px;
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
}
nav ul {
list-style: none;
margin: 0;
padding: 0;
display: flex;
}
nav ul li {
margin: 0 10px;
}
nav ul li a {
color: #fff;
text-decoration: none;
}
/* 横幅样式 */
#banner {
background-image: url('banner.jpg');
height: 500px;
background-size: cover;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
#banner h1 {
font-size: 3em;
color: #fff;
text-shadow: 1px 1px #333;
}
#banner button {
padding: 10px 20px;
background-color: #f44336;
color: #fff;
border: none;
border-radius: 5px;
font-size: 1.2em;
}
/* 酒店介绍样式 */
#introduction {
padding: 50px;
display: flex;
flex-direction: column;
align-items: center;
}
#introduction h2 {
font-size: 2em;
margin-bottom: 30px;
}
#introduction p {
font-size: 1.2em;
line-height: 1.5;
text-align: center;
margin-bottom: 50px;
}
#introduction img {
width: 100%;
max-width: 800px;
}
/* 房型展示样式 */
#rooms {
padding: 50px;
}
#rooms h2 {
font-size: 2em;
margin-bottom: 30px;
}
#rooms ul {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-wrap: wrap;
}
#rooms li {
width: 33.33%;
padding: 20px;
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin-bottom: 50px;
}
#rooms li img {
width: 100%;
max-width: 300px;
}
#rooms li h3 {
font-size: 1.5em;
margin-bottom: 10px;
}
#rooms li p {
font-size: 1.2em;
margin-bottom: 5px;
}
/* 页脚样式 */
footer {
background-color: #333;
color: #fff;
padding: 10px;
text-align: center;
}
```
这个示例中,我们使用了HTML和CSS来构建一个简单的宾馆前端页面。页面包括导航栏、横幅、酒店介绍和房型展示等模块,使用了flex布局和响应式设计技术,适配不同屏幕尺寸。
阅读全文